todo_define_not_default.carbon 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  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/todo_define_not_default.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/interface/todo_define_not_default.carbon
  10. interface I {
  11. // TODO: A definition without `default` in an interface should be rejected.
  12. fn F() {}
  13. fn G(a: i32, b: i32) -> i32 = "int.sadd";
  14. // TODO: An associated constant with an initializer without `default` in an
  15. // interface should be rejected.
  16. let T:! type = (i32, i32);
  17. let N:! i32 = 42;
  18. }
  19. // CHECK:STDOUT: --- todo_define_not_default.carbon
  20. // CHECK:STDOUT:
  21. // CHECK:STDOUT: constants {
  22. // CHECK:STDOUT: %I.type: type = facet_type <@I> [template]
  23. // CHECK:STDOUT: %Self.1: %I.type = bind_symbolic_name Self, 0 [symbolic]
  24. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  25. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  26. // CHECK:STDOUT: %.1: type = assoc_entity_type %I.type, %F.type [template]
  27. // CHECK:STDOUT: %.2: %.1 = assoc_entity element0, @I.%F.decl [template]
  28. // CHECK:STDOUT: %.3: Core.IntLiteral = int_value 32 [template]
  29. // CHECK:STDOUT: %Int.type: type = fn_type @Int [template]
  30. // CHECK:STDOUT: %Int: %Int.type = struct_value () [template]
  31. // CHECK:STDOUT: %i32: type = int_type signed, %.3 [template]
  32. // CHECK:STDOUT: %G.type: type = fn_type @G [template]
  33. // CHECK:STDOUT: %G: %G.type = struct_value () [template]
  34. // CHECK:STDOUT: %.4: type = assoc_entity_type %I.type, %G.type [template]
  35. // CHECK:STDOUT: %.5: %.4 = assoc_entity element1, @I.%G.decl [template]
  36. // CHECK:STDOUT: %tuple.type.1: type = tuple_type (type, type) [template]
  37. // CHECK:STDOUT: %tuple.type.2: type = tuple_type (%i32, %i32) [template]
  38. // CHECK:STDOUT: %.6: type = assoc_entity_type %I.type, type [template]
  39. // CHECK:STDOUT: %.7: %.6 = assoc_entity element2, @I.%T [template]
  40. // CHECK:STDOUT: %.8: Core.IntLiteral = int_value 42 [template]
  41. // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert.1, @ImplicitAs(%i32) [template]
  42. // CHECK:STDOUT: %Convert.type.14: type = fn_type @Convert.2, @impl.1(%.3) [template]
  43. // CHECK:STDOUT: %Convert.14: %Convert.type.14 = struct_value () [template]
  44. // CHECK:STDOUT: %.28: <witness> = interface_witness (%Convert.14) [template]
  45. // CHECK:STDOUT: %.29: <bound method> = bound_method %.8, %Convert.14 [template]
  46. // CHECK:STDOUT: %.30: <specific function> = specific_function %.29, @Convert.2(%.3) [template]
  47. // CHECK:STDOUT: %.31: %i32 = int_value 42 [template]
  48. // CHECK:STDOUT: %.32: type = assoc_entity_type %I.type, %i32 [template]
  49. // CHECK:STDOUT: %.33: %.32 = assoc_entity element3, @I.%N [template]
  50. // CHECK:STDOUT: }
  51. // CHECK:STDOUT:
  52. // CHECK:STDOUT: imports {
  53. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  54. // CHECK:STDOUT: .Int = %import_ref.1
  55. // CHECK:STDOUT: .ImplicitAs = %import_ref.2
  56. // CHECK:STDOUT: import Core//prelude
  57. // CHECK:STDOUT: import Core//prelude/...
  58. // CHECK:STDOUT: }
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT:
  61. // CHECK:STDOUT: file {
  62. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  63. // CHECK:STDOUT: .Core = imports.%Core
  64. // CHECK:STDOUT: .I = %I.decl
  65. // CHECK:STDOUT: }
  66. // CHECK:STDOUT: %Core.import = import Core
  67. // CHECK:STDOUT: %I.decl: type = interface_decl @I [template = constants.%I.type] {} {}
  68. // CHECK:STDOUT: }
  69. // CHECK:STDOUT:
  70. // CHECK:STDOUT: interface @I {
  71. // CHECK:STDOUT: %Self: %I.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.1]
  72. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {} {}
  73. // CHECK:STDOUT: %.loc13: %.1 = assoc_entity element0, %F.decl [template = constants.%.2]
  74. // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [template = constants.%G] {
  75. // CHECK:STDOUT: %a.patt: %i32 = binding_pattern a
  76. // CHECK:STDOUT: %a.param_patt: %i32 = value_param_pattern %a.patt, runtime_param0
  77. // CHECK:STDOUT: %b.patt: %i32 = binding_pattern b
  78. // CHECK:STDOUT: %b.param_patt: %i32 = value_param_pattern %b.patt, runtime_param1
  79. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  80. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, runtime_param2
  81. // CHECK:STDOUT: } {
  82. // CHECK:STDOUT: %.loc14_11.1: Core.IntLiteral = int_value 32 [template = constants.%.3]
  83. // CHECK:STDOUT: %int.make_type_signed.loc14_11: init type = call constants.%Int(%.loc14_11.1) [template = constants.%i32]
  84. // CHECK:STDOUT: %.loc14_11.2: type = value_of_initializer %int.make_type_signed.loc14_11 [template = constants.%i32]
  85. // CHECK:STDOUT: %.loc14_11.3: type = converted %int.make_type_signed.loc14_11, %.loc14_11.2 [template = constants.%i32]
  86. // CHECK:STDOUT: %.loc14_19.1: Core.IntLiteral = int_value 32 [template = constants.%.3]
  87. // CHECK:STDOUT: %int.make_type_signed.loc14_19: init type = call constants.%Int(%.loc14_19.1) [template = constants.%i32]
  88. // CHECK:STDOUT: %.loc14_19.2: type = value_of_initializer %int.make_type_signed.loc14_19 [template = constants.%i32]
  89. // CHECK:STDOUT: %.loc14_19.3: type = converted %int.make_type_signed.loc14_19, %.loc14_19.2 [template = constants.%i32]
  90. // CHECK:STDOUT: %.loc14_27.1: Core.IntLiteral = int_value 32 [template = constants.%.3]
  91. // CHECK:STDOUT: %int.make_type_signed.loc14_27: init type = call constants.%Int(%.loc14_27.1) [template = constants.%i32]
  92. // CHECK:STDOUT: %.loc14_27.2: type = value_of_initializer %int.make_type_signed.loc14_27 [template = constants.%i32]
  93. // CHECK:STDOUT: %.loc14_27.3: type = converted %int.make_type_signed.loc14_27, %.loc14_27.2 [template = constants.%i32]
  94. // CHECK:STDOUT: %a.param: %i32 = value_param runtime_param0
  95. // CHECK:STDOUT: %a: %i32 = bind_name a, %a.param
  96. // CHECK:STDOUT: %b.param: %i32 = value_param runtime_param1
  97. // CHECK:STDOUT: %b: %i32 = bind_name b, %b.param
  98. // CHECK:STDOUT: %return.param: ref %i32 = out_param runtime_param2
  99. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  100. // CHECK:STDOUT: }
  101. // CHECK:STDOUT: %.loc14: %.4 = assoc_entity element1, %G.decl [template = constants.%.5]
  102. // CHECK:STDOUT: %.loc18_19: Core.IntLiteral = int_value 32 [template = constants.%.3]
  103. // CHECK:STDOUT: %int.make_type_signed.loc18_19: init type = call constants.%Int(%.loc18_19) [template = constants.%i32]
  104. // CHECK:STDOUT: %.loc18_24: Core.IntLiteral = int_value 32 [template = constants.%.3]
  105. // CHECK:STDOUT: %int.make_type_signed.loc18_24: init type = call constants.%Int(%.loc18_24) [template = constants.%i32]
  106. // CHECK:STDOUT: %.loc18_27: %tuple.type.1 = tuple_literal (%int.make_type_signed.loc18_19, %int.make_type_signed.loc18_24)
  107. // CHECK:STDOUT: %.loc18_28.1: type = value_of_initializer %int.make_type_signed.loc18_19 [template = constants.%i32]
  108. // CHECK:STDOUT: %.loc18_28.2: type = converted %int.make_type_signed.loc18_19, %.loc18_28.1 [template = constants.%i32]
  109. // CHECK:STDOUT: %.loc18_28.3: type = value_of_initializer %int.make_type_signed.loc18_24 [template = constants.%i32]
  110. // CHECK:STDOUT: %.loc18_28.4: type = converted %int.make_type_signed.loc18_24, %.loc18_28.3 [template = constants.%i32]
  111. // CHECK:STDOUT: %.loc18_28.5: type = converted %.loc18_27, constants.%tuple.type.2 [template = constants.%tuple.type.2]
  112. // CHECK:STDOUT: %T: type = assoc_const_decl T [template]
  113. // CHECK:STDOUT: %.loc18_28.6: %.6 = assoc_entity element2, %T [template = constants.%.7]
  114. // CHECK:STDOUT: %.loc19_11.1: Core.IntLiteral = int_value 32 [template = constants.%.3]
  115. // CHECK:STDOUT: %int.make_type_signed.loc19: init type = call constants.%Int(%.loc19_11.1) [template = constants.%i32]
  116. // CHECK:STDOUT: %.loc19_11.2: type = value_of_initializer %int.make_type_signed.loc19 [template = constants.%i32]
  117. // CHECK:STDOUT: %.loc19_11.3: type = converted %int.make_type_signed.loc19, %.loc19_11.2 [template = constants.%i32]
  118. // CHECK:STDOUT: %.loc19_17: Core.IntLiteral = int_value 42 [template = constants.%.8]
  119. // CHECK:STDOUT: %.loc19_19.1: %Convert.type.2 = interface_witness_access constants.%.28, element0 [template = constants.%Convert.14]
  120. // CHECK:STDOUT: %.loc19_19.2: <bound method> = bound_method %.loc19_17, %.loc19_19.1 [template = constants.%.29]
  121. // CHECK:STDOUT: %.loc19_19.3: <specific function> = specific_function %.loc19_19.2, @Convert.2(constants.%.3) [template = constants.%.30]
  122. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %.loc19_19.3(%.loc19_17) [template = constants.%.31]
  123. // CHECK:STDOUT: %.loc19_19.4: %i32 = value_of_initializer %int.convert_checked [template = constants.%.31]
  124. // CHECK:STDOUT: %.loc19_19.5: %i32 = converted %.loc19_17, %.loc19_19.4 [template = constants.%.31]
  125. // CHECK:STDOUT: %N: %i32 = assoc_const_decl N [template]
  126. // CHECK:STDOUT: %.loc19_19.6: %.32 = assoc_entity element3, %N [template = constants.%.33]
  127. // CHECK:STDOUT:
  128. // CHECK:STDOUT: !members:
  129. // CHECK:STDOUT: .Self = %Self
  130. // CHECK:STDOUT: .F = %.loc13
  131. // CHECK:STDOUT: .G = %.loc14
  132. // CHECK:STDOUT: .T = %.loc18_28.6
  133. // CHECK:STDOUT: .N = %.loc19_19.6
  134. // CHECK:STDOUT: witness = (%F.decl, %G.decl, %T, %N)
  135. // CHECK:STDOUT: }
  136. // CHECK:STDOUT:
  137. // CHECK:STDOUT: generic fn @F(@I.%Self: %I.type) {
  138. // CHECK:STDOUT: !definition:
  139. // CHECK:STDOUT:
  140. // CHECK:STDOUT: fn() {
  141. // CHECK:STDOUT: !entry:
  142. // CHECK:STDOUT: return
  143. // CHECK:STDOUT: }
  144. // CHECK:STDOUT: }
  145. // CHECK:STDOUT:
  146. // CHECK:STDOUT: generic fn @G(@I.%Self: %I.type) {
  147. // CHECK:STDOUT: !definition:
  148. // CHECK:STDOUT:
  149. // CHECK:STDOUT: fn(%a.param_patt: %i32, %b.param_patt: %i32) -> %i32 = "int.sadd";
  150. // CHECK:STDOUT: }
  151. // CHECK:STDOUT:
  152. // CHECK:STDOUT: specific @F(constants.%Self.1) {}
  153. // CHECK:STDOUT:
  154. // CHECK:STDOUT: specific @G(constants.%Self.1) {}
  155. // CHECK:STDOUT: