fail_todo_define_default_fn_inline.carbon 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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+3]]:3: error: semantics TODO: `interface modifier` [SemanticsTodo]
  17. // CHECK:STDERR: default fn G(a: i32, b: i32) -> i32 = "int.sadd";
  18. // CHECK:STDERR: ^~~~~~~
  19. default fn G(a: i32, b: i32) -> i32 = "int.sadd";
  20. }
  21. // CHECK:STDOUT: --- fail_todo_define_default_fn_inline.carbon
  22. // CHECK:STDOUT:
  23. // CHECK:STDOUT: constants {
  24. // CHECK:STDOUT: %Interface.type: type = facet_type <@Interface> [template]
  25. // CHECK:STDOUT: %Self: %Interface.type = bind_symbolic_name Self, 0 [symbolic]
  26. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  27. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  28. // CHECK:STDOUT: %.1: type = assoc_entity_type %Interface.type, %F.type [template]
  29. // CHECK:STDOUT: %.2: %.1 = assoc_entity element0, @Interface.%F.decl [template]
  30. // CHECK:STDOUT: %Int32.type: type = fn_type @Int32 [template]
  31. // CHECK:STDOUT: %Int32: %Int32.type = struct_value () [template]
  32. // CHECK:STDOUT: %G.type: type = fn_type @G [template]
  33. // CHECK:STDOUT: %G: %G.type = struct_value () [template]
  34. // CHECK:STDOUT: %.3: type = assoc_entity_type %Interface.type, %G.type [template]
  35. // CHECK:STDOUT: %.4: %.3 = assoc_entity element1, @Interface.%G.decl [template]
  36. // CHECK:STDOUT: }
  37. // CHECK:STDOUT:
  38. // CHECK:STDOUT: imports {
  39. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  40. // CHECK:STDOUT: .Int32 = %import_ref
  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 [template] {
  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 [template = 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 [template = constants.%F] {} {}
  58. // CHECK:STDOUT: %.loc16: %.1 = assoc_entity element0, %F.decl [template = constants.%.2]
  59. // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [template = constants.%G] {
  60. // CHECK:STDOUT: %a.patt: i32 = binding_pattern a
  61. // CHECK:STDOUT: %a.param_patt: i32 = value_param_pattern %a.patt, runtime_param0
  62. // CHECK:STDOUT: %b.patt: i32 = binding_pattern b
  63. // CHECK:STDOUT: %b.param_patt: i32 = value_param_pattern %b.patt, runtime_param1
  64. // CHECK:STDOUT: %return.patt: i32 = return_slot_pattern
  65. // CHECK:STDOUT: %return.param_patt: i32 = out_param_pattern %return.patt, runtime_param2
  66. // CHECK:STDOUT: } {
  67. // CHECK:STDOUT: %int.make_type_32.loc21_19: init type = call constants.%Int32() [template = i32]
  68. // CHECK:STDOUT: %.loc21_19.1: type = value_of_initializer %int.make_type_32.loc21_19 [template = i32]
  69. // CHECK:STDOUT: %.loc21_19.2: type = converted %int.make_type_32.loc21_19, %.loc21_19.1 [template = i32]
  70. // CHECK:STDOUT: %int.make_type_32.loc21_27: init type = call constants.%Int32() [template = i32]
  71. // CHECK:STDOUT: %.loc21_27.1: type = value_of_initializer %int.make_type_32.loc21_27 [template = i32]
  72. // CHECK:STDOUT: %.loc21_27.2: type = converted %int.make_type_32.loc21_27, %.loc21_27.1 [template = i32]
  73. // CHECK:STDOUT: %int.make_type_32.loc21_35: init type = call constants.%Int32() [template = i32]
  74. // CHECK:STDOUT: %.loc21_35.1: type = value_of_initializer %int.make_type_32.loc21_35 [template = i32]
  75. // CHECK:STDOUT: %.loc21_35.2: type = converted %int.make_type_32.loc21_35, %.loc21_35.1 [template = i32]
  76. // CHECK:STDOUT: %a.param: i32 = value_param runtime_param0
  77. // CHECK:STDOUT: %a: i32 = bind_name a, %a.param
  78. // CHECK:STDOUT: %b.param: i32 = value_param runtime_param1
  79. // CHECK:STDOUT: %b: i32 = bind_name b, %b.param
  80. // CHECK:STDOUT: %return.param: ref i32 = out_param runtime_param2
  81. // CHECK:STDOUT: %return: ref i32 = return_slot %return.param
  82. // CHECK:STDOUT: }
  83. // CHECK:STDOUT: %.loc21: %.3 = assoc_entity element1, %G.decl [template = constants.%.4]
  84. // CHECK:STDOUT:
  85. // CHECK:STDOUT: !members:
  86. // CHECK:STDOUT: .Self = %Self
  87. // CHECK:STDOUT: .F = %.loc16
  88. // CHECK:STDOUT: .G = %.loc21
  89. // CHECK:STDOUT: witness = (%F.decl, %G.decl)
  90. // CHECK:STDOUT: }
  91. // CHECK:STDOUT:
  92. // CHECK:STDOUT: generic fn @F(@Interface.%Self: %Interface.type) {
  93. // CHECK:STDOUT: !definition:
  94. // CHECK:STDOUT:
  95. // CHECK:STDOUT: fn() {
  96. // CHECK:STDOUT: !entry:
  97. // CHECK:STDOUT: return
  98. // CHECK:STDOUT: }
  99. // CHECK:STDOUT: }
  100. // CHECK:STDOUT:
  101. // CHECK:STDOUT: generic fn @G(@Interface.%Self: %Interface.type) {
  102. // CHECK:STDOUT: !definition:
  103. // CHECK:STDOUT:
  104. // CHECK:STDOUT: fn(%a.param_patt: i32, %b.param_patt: i32) -> i32 = "int.sadd";
  105. // CHECK:STDOUT: }
  106. // CHECK:STDOUT:
  107. // CHECK:STDOUT: specific @F(constants.%Self) {}
  108. // CHECK:STDOUT:
  109. // CHECK:STDOUT: specific @G(constants.%Self) {}
  110. // CHECK:STDOUT: