fail_todo_define_default_fn_inline.carbon 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // AUTOUPDATE
  6. // TIP: To test this file alone, run:
  7. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/interface/fail_todo_define_default_fn_inline.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/interface/fail_todo_define_default_fn_inline.carbon
  10. interface Interface {
  11. // CHECK:STDERR: fail_todo_define_default_fn_inline.carbon:[[@LINE+4]]:3: error: semantics TODO: `interface modifier` [SemanticsTodo]
  12. // CHECK:STDERR: default fn F() {}
  13. // CHECK:STDERR: ^~~~~~~
  14. // CHECK:STDERR:
  15. default fn F() {}
  16. // CHECK:STDERR: fail_todo_define_default_fn_inline.carbon:[[@LINE+4]]:3: error: semantics TODO: `interface modifier` [SemanticsTodo]
  17. // CHECK:STDERR: default fn G(a: i32, b: i32) -> i32 = "int.sadd";
  18. // CHECK:STDERR: ^~~~~~~
  19. // CHECK:STDERR:
  20. default fn G(a: i32, b: i32) -> i32 = "int.sadd";
  21. }
  22. // CHECK:STDOUT: --- fail_todo_define_default_fn_inline.carbon
  23. // CHECK:STDOUT:
  24. // CHECK:STDOUT: constants {
  25. // CHECK:STDOUT: %Interface.type: type = facet_type <@Interface> [concrete]
  26. // CHECK:STDOUT: %Self: %Interface.type = bind_symbolic_name Self, 0 [symbolic]
  27. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  28. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  29. // CHECK:STDOUT: %Interface.assoc_type: type = assoc_entity_type %Interface.type [concrete]
  30. // CHECK:STDOUT: %assoc0: %Interface.assoc_type = assoc_entity element0, @Interface.%F.decl [concrete]
  31. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  32. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  33. // CHECK:STDOUT: %G.type: type = fn_type @G [concrete]
  34. // CHECK:STDOUT: %G: %G.type = struct_value () [concrete]
  35. // CHECK:STDOUT: %assoc1: %Interface.assoc_type = assoc_entity element1, @Interface.%G.decl [concrete]
  36. // CHECK:STDOUT: }
  37. // CHECK:STDOUT:
  38. // CHECK:STDOUT: imports {
  39. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  40. // CHECK:STDOUT: .Int = %Core.Int
  41. // CHECK:STDOUT: import Core//prelude
  42. // CHECK:STDOUT: import Core//prelude/...
  43. // CHECK:STDOUT: }
  44. // CHECK:STDOUT: }
  45. // CHECK:STDOUT:
  46. // CHECK:STDOUT: file {
  47. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  48. // CHECK:STDOUT: .Core = imports.%Core
  49. // CHECK:STDOUT: .Interface = %Interface.decl
  50. // CHECK:STDOUT: }
  51. // CHECK:STDOUT: %Core.import = import Core
  52. // CHECK:STDOUT: %Interface.decl: type = interface_decl @Interface [concrete = constants.%Interface.type] {} {}
  53. // CHECK:STDOUT: }
  54. // CHECK:STDOUT:
  55. // CHECK:STDOUT: interface @Interface {
  56. // CHECK:STDOUT: %Self: %Interface.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
  57. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {} {}
  58. // CHECK:STDOUT: %assoc0: %Interface.assoc_type = assoc_entity element0, %F.decl [concrete = constants.%assoc0]
  59. // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [concrete = constants.%G] {
  60. // CHECK:STDOUT: %a.patt: %i32 = binding_pattern a
  61. // CHECK:STDOUT: %a.param_patt: %i32 = value_param_pattern %a.patt, call_param0
  62. // CHECK:STDOUT: %b.patt: %i32 = binding_pattern b
  63. // CHECK:STDOUT: %b.param_patt: %i32 = value_param_pattern %b.patt, call_param1
  64. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  65. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, call_param2
  66. // CHECK:STDOUT: } {
  67. // CHECK:STDOUT: %int_32.loc22_35: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  68. // CHECK:STDOUT: %i32.loc22_35: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  69. // CHECK:STDOUT: %a.param: %i32 = value_param call_param0
  70. // CHECK:STDOUT: %.loc22_19: type = splice_block %i32.loc22_19 [concrete = constants.%i32] {
  71. // CHECK:STDOUT: %int_32.loc22_19: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  72. // CHECK:STDOUT: %i32.loc22_19: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  73. // CHECK:STDOUT: }
  74. // CHECK:STDOUT: %a: %i32 = bind_name a, %a.param
  75. // CHECK:STDOUT: %b.param: %i32 = value_param call_param1
  76. // CHECK:STDOUT: %.loc22_27: type = splice_block %i32.loc22_27 [concrete = constants.%i32] {
  77. // CHECK:STDOUT: %int_32.loc22_27: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  78. // CHECK:STDOUT: %i32.loc22_27: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  79. // CHECK:STDOUT: }
  80. // CHECK:STDOUT: %b: %i32 = bind_name b, %b.param
  81. // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param2
  82. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  83. // CHECK:STDOUT: }
  84. // CHECK:STDOUT: %assoc1: %Interface.assoc_type = assoc_entity element1, %G.decl [concrete = constants.%assoc1]
  85. // CHECK:STDOUT:
  86. // CHECK:STDOUT: !members:
  87. // CHECK:STDOUT: .Self = %Self
  88. // CHECK:STDOUT: .F = %assoc0
  89. // CHECK:STDOUT: .G = %assoc1
  90. // CHECK:STDOUT: witness = (%F.decl, %G.decl)
  91. // CHECK:STDOUT: }
  92. // CHECK:STDOUT:
  93. // CHECK:STDOUT: generic fn @F(@Interface.%Self: %Interface.type) {
  94. // CHECK:STDOUT: !definition:
  95. // CHECK:STDOUT:
  96. // CHECK:STDOUT: fn() {
  97. // CHECK:STDOUT: !entry:
  98. // CHECK:STDOUT: return
  99. // CHECK:STDOUT: }
  100. // CHECK:STDOUT: }
  101. // CHECK:STDOUT:
  102. // CHECK:STDOUT: generic fn @G(@Interface.%Self: %Interface.type) {
  103. // CHECK:STDOUT: !definition:
  104. // CHECK:STDOUT:
  105. // CHECK:STDOUT: fn(%a.param_patt: %i32, %b.param_patt: %i32) -> %i32 = "int.sadd";
  106. // CHECK:STDOUT: }
  107. // CHECK:STDOUT:
  108. // CHECK:STDOUT: specific @F(constants.%Self) {}
  109. // CHECK:STDOUT:
  110. // CHECK:STDOUT: specific @G(constants.%Self) {}
  111. // CHECK:STDOUT: