fail_todo_impl_assoc_const.carbon 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  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/impl/fail_todo_impl_assoc_const.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/impl/fail_todo_impl_assoc_const.carbon
  10. interface I { let T:! type; }
  11. // CHECK:STDERR: fail_todo_impl_assoc_const.carbon:[[@LINE+10]]:1: error: semantics TODO: `impl as non-interface` [SemanticsTodo]
  12. // CHECK:STDERR: impl bool as I where .T = bool {}
  13. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  14. // CHECK:STDERR:
  15. // CHECK:STDERR: fail_todo_impl_assoc_const.carbon:[[@LINE+6]]:27: error: cannot implicitly convert from `type` to `<associated type in I>` [ImplicitAsConversionFailure]
  16. // CHECK:STDERR: impl bool as I where .T = bool {}
  17. // CHECK:STDERR: ^~~~
  18. // CHECK:STDERR: fail_todo_impl_assoc_const.carbon:[[@LINE+3]]:27: note: type `type` does not implement interface `ImplicitAs` [MissingImplInMemberAccessNote]
  19. // CHECK:STDERR: impl bool as I where .T = bool {}
  20. // CHECK:STDERR: ^~~~
  21. impl bool as I where .T = bool {}
  22. // CHECK:STDOUT: --- fail_todo_impl_assoc_const.carbon
  23. // CHECK:STDOUT:
  24. // CHECK:STDOUT: constants {
  25. // CHECK:STDOUT: %I.type: type = interface_type @I [template]
  26. // CHECK:STDOUT: %Self.1: %I.type = bind_symbolic_name Self, 0 [symbolic]
  27. // CHECK:STDOUT: %.1: type = assoc_entity_type %I.type, type [template]
  28. // CHECK:STDOUT: %.2: %.1 = assoc_entity element0, @I.%T [template]
  29. // CHECK:STDOUT: %Bool.type: type = fn_type @Bool [template]
  30. // CHECK:STDOUT: %.3: type = tuple_type () [template]
  31. // CHECK:STDOUT: %Bool: %Bool.type = struct_value () [template]
  32. // CHECK:STDOUT: %.Self: %I.type = bind_symbolic_name .Self, 0 [symbolic]
  33. // CHECK:STDOUT: %ImplicitAs.type.1: type = generic_interface_type @ImplicitAs [template]
  34. // CHECK:STDOUT: %ImplicitAs: %ImplicitAs.type.1 = struct_value () [template]
  35. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic]
  36. // CHECK:STDOUT: %ImplicitAs.type.2: type = interface_type @ImplicitAs, @ImplicitAs(%Dest) [symbolic]
  37. // CHECK:STDOUT: %Self.2: @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.2) = bind_symbolic_name Self, 1 [symbolic]
  38. // CHECK:STDOUT: %Dest.patt: type = symbolic_binding_pattern Dest, 0 [symbolic]
  39. // CHECK:STDOUT: %Self.3: %ImplicitAs.type.2 = bind_symbolic_name Self, 1 [symbolic]
  40. // CHECK:STDOUT: %Convert.type.1: type = fn_type @Convert, @ImplicitAs(%Dest) [symbolic]
  41. // CHECK:STDOUT: %Convert.1: %Convert.type.1 = struct_value () [symbolic]
  42. // CHECK:STDOUT: %.4: type = assoc_entity_type %ImplicitAs.type.2, %Convert.type.1 [symbolic]
  43. // CHECK:STDOUT: %.5: %.4 = assoc_entity element0, imports.%import_ref.6 [symbolic]
  44. // CHECK:STDOUT: %ImplicitAs.type.3: type = interface_type @ImplicitAs, @ImplicitAs(%.1) [template]
  45. // CHECK:STDOUT: %Convert.type.2: type = fn_type @Convert, @ImplicitAs(%.1) [template]
  46. // CHECK:STDOUT: %Convert.2: %Convert.type.2 = struct_value () [template]
  47. // CHECK:STDOUT: %.6: type = assoc_entity_type %ImplicitAs.type.3, %Convert.type.2 [template]
  48. // CHECK:STDOUT: %.7: %.6 = assoc_entity element0, imports.%import_ref.6 [template]
  49. // CHECK:STDOUT: %.8: %.4 = assoc_entity element0, imports.%import_ref.7 [symbolic]
  50. // CHECK:STDOUT: %.9: type = facet_type <facet-type %I.type+requirements> [template]
  51. // CHECK:STDOUT: }
  52. // CHECK:STDOUT:
  53. // CHECK:STDOUT: imports {
  54. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
  55. // CHECK:STDOUT: .Bool = %import_ref.1
  56. // CHECK:STDOUT: .ImplicitAs = %import_ref.2
  57. // CHECK:STDOUT: import Core//prelude
  58. // CHECK:STDOUT: import Core//prelude/...
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT: %import_ref.1: %Bool.type = import_ref Core//prelude/types/bool, inst+5, loaded [template = constants.%Bool]
  61. // CHECK:STDOUT: %import_ref.2: %ImplicitAs.type.1 = import_ref Core//prelude/operators/as, inst+49, loaded [template = constants.%ImplicitAs]
  62. // CHECK:STDOUT: %import_ref.3 = import_ref Core//prelude/operators/as, inst+55, unloaded
  63. // CHECK:STDOUT: %import_ref.4: @ImplicitAs.%.1 (%.4) = import_ref Core//prelude/operators/as, inst+77, loaded [symbolic = @ImplicitAs.%.2 (constants.%.8)]
  64. // CHECK:STDOUT: %import_ref.5 = import_ref Core//prelude/operators/as, inst+70, unloaded
  65. // CHECK:STDOUT: %import_ref.6 = import_ref Core//prelude/operators/as, inst+70, unloaded
  66. // CHECK:STDOUT: %import_ref.7 = import_ref Core//prelude/operators/as, inst+70, unloaded
  67. // CHECK:STDOUT: }
  68. // CHECK:STDOUT:
  69. // CHECK:STDOUT: file {
  70. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  71. // CHECK:STDOUT: .Core = imports.%Core
  72. // CHECK:STDOUT: .I = %I.decl
  73. // CHECK:STDOUT: }
  74. // CHECK:STDOUT: %Core.import = import Core
  75. // CHECK:STDOUT: %I.decl: type = interface_decl @I [template = constants.%I.type] {} {}
  76. // CHECK:STDOUT: impl_decl @impl [template] {} {
  77. // CHECK:STDOUT: %bool.make_type.loc23_6: init type = call constants.%Bool() [template = bool]
  78. // CHECK:STDOUT: %.loc23_6.1: type = value_of_initializer %bool.make_type.loc23_6 [template = bool]
  79. // CHECK:STDOUT: %.loc23_6.2: type = converted %bool.make_type.loc23_6, %.loc23_6.1 [template = bool]
  80. // CHECK:STDOUT: %I.ref: type = name_ref I, file.%I.decl [template = constants.%I.type]
  81. // CHECK:STDOUT: %.Self: %I.type = bind_symbolic_name .Self, 0 [symbolic = constants.%.Self]
  82. // CHECK:STDOUT: %.Self.ref: %I.type = name_ref .Self, %.Self [symbolic = constants.%.Self]
  83. // CHECK:STDOUT: %T.ref: %.1 = name_ref T, @I.%.loc11 [template = constants.%.2]
  84. // CHECK:STDOUT: %bool.make_type.loc23_27: init type = call constants.%Bool() [template = bool]
  85. // CHECK:STDOUT: %ImplicitAs.type: type = interface_type @ImplicitAs, @ImplicitAs(constants.%.1) [template = constants.%ImplicitAs.type.3]
  86. // CHECK:STDOUT: %.loc23_27.1: %.6 = specific_constant imports.%import_ref.4, @ImplicitAs(constants.%.1) [template = constants.%.7]
  87. // CHECK:STDOUT: %Convert.ref: %.6 = name_ref Convert, %.loc23_27.1 [template = constants.%.7]
  88. // CHECK:STDOUT: %.loc23_27.2: ref type = temporary_storage
  89. // CHECK:STDOUT: %.loc23_27.3: ref type = temporary %.loc23_27.2, %bool.make_type.loc23_27
  90. // CHECK:STDOUT: %.loc23_27.4: %.1 = converted %bool.make_type.loc23_27, <error> [template = <error>]
  91. // CHECK:STDOUT: %.loc23_16: type = where_expr %.Self [template = constants.%.9] {
  92. // CHECK:STDOUT: requirement_rewrite %T.ref, <error>
  93. // CHECK:STDOUT: }
  94. // CHECK:STDOUT: }
  95. // CHECK:STDOUT: }
  96. // CHECK:STDOUT:
  97. // CHECK:STDOUT: interface @I {
  98. // CHECK:STDOUT: %Self: %I.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.1]
  99. // CHECK:STDOUT: %T: type = assoc_const_decl T [template]
  100. // CHECK:STDOUT: %.loc11: %.1 = assoc_entity element0, %T [template = constants.%.2]
  101. // CHECK:STDOUT:
  102. // CHECK:STDOUT: !members:
  103. // CHECK:STDOUT: .Self = %Self
  104. // CHECK:STDOUT: .T = %.loc11
  105. // CHECK:STDOUT: witness = (%T)
  106. // CHECK:STDOUT: }
  107. // CHECK:STDOUT:
  108. // CHECK:STDOUT: generic interface @ImplicitAs(constants.%Dest: type) {
  109. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic = %Dest (constants.%Dest)]
  110. // CHECK:STDOUT: %Dest.patt: type = symbolic_binding_pattern Dest, 0 [symbolic = %Dest.patt (constants.%Dest.patt)]
  111. // CHECK:STDOUT:
  112. // CHECK:STDOUT: !definition:
  113. // CHECK:STDOUT: %ImplicitAs.type: type = interface_type @ImplicitAs, @ImplicitAs(%Dest) [symbolic = %ImplicitAs.type (constants.%ImplicitAs.type.2)]
  114. // CHECK:STDOUT: %Self: %ImplicitAs.type.2 = bind_symbolic_name Self, 1 [symbolic = %Self (constants.%Self.3)]
  115. // CHECK:STDOUT: %Convert.type: type = fn_type @Convert, @ImplicitAs(%Dest) [symbolic = %Convert.type (constants.%Convert.type.1)]
  116. // CHECK:STDOUT: %Convert: @ImplicitAs.%Convert.type (%Convert.type.1) = struct_value () [symbolic = %Convert (constants.%Convert.1)]
  117. // CHECK:STDOUT: %.1: type = assoc_entity_type @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.2), @ImplicitAs.%Convert.type (%Convert.type.1) [symbolic = %.1 (constants.%.4)]
  118. // CHECK:STDOUT: %.2: @ImplicitAs.%.1 (%.4) = assoc_entity element0, imports.%import_ref.6 [symbolic = %.2 (constants.%.5)]
  119. // CHECK:STDOUT:
  120. // CHECK:STDOUT: interface {
  121. // CHECK:STDOUT: !members:
  122. // CHECK:STDOUT: .Self = imports.%import_ref.3
  123. // CHECK:STDOUT: .Convert = imports.%import_ref.4
  124. // CHECK:STDOUT: witness = (imports.%import_ref.5)
  125. // CHECK:STDOUT: }
  126. // CHECK:STDOUT: }
  127. // CHECK:STDOUT:
  128. // CHECK:STDOUT: impl @impl: %.loc23_6.2 as %.loc23_16 {
  129. // CHECK:STDOUT: !members:
  130. // CHECK:STDOUT: witness = <error>
  131. // CHECK:STDOUT: }
  132. // CHECK:STDOUT:
  133. // CHECK:STDOUT: fn @Bool() -> type = "bool.make_type";
  134. // CHECK:STDOUT:
  135. // CHECK:STDOUT: generic fn @Convert(constants.%Dest: type, constants.%Self.2: @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.2)) {
  136. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic = %Dest (constants.%Dest)]
  137. // CHECK:STDOUT: %ImplicitAs.type: type = interface_type @ImplicitAs, @ImplicitAs(%Dest) [symbolic = %ImplicitAs.type (constants.%ImplicitAs.type.2)]
  138. // CHECK:STDOUT: %Self: %ImplicitAs.type.2 = bind_symbolic_name Self, 1 [symbolic = %Self (constants.%Self.3)]
  139. // CHECK:STDOUT:
  140. // CHECK:STDOUT: fn[%self.param_patt: @Convert.%Self (%Self.3)]() -> @Convert.%Dest (%Dest);
  141. // CHECK:STDOUT: }
  142. // CHECK:STDOUT:
  143. // CHECK:STDOUT: specific @ImplicitAs(constants.%Dest) {
  144. // CHECK:STDOUT: %Dest => constants.%Dest
  145. // CHECK:STDOUT: %Dest.patt => constants.%Dest
  146. // CHECK:STDOUT: }
  147. // CHECK:STDOUT:
  148. // CHECK:STDOUT: specific @ImplicitAs(@ImplicitAs.%Dest) {
  149. // CHECK:STDOUT: %Dest => constants.%Dest
  150. // CHECK:STDOUT: %Dest.patt => constants.%Dest
  151. // CHECK:STDOUT: }
  152. // CHECK:STDOUT:
  153. // CHECK:STDOUT: specific @ImplicitAs(@Convert.%Dest) {
  154. // CHECK:STDOUT: %Dest => constants.%Dest
  155. // CHECK:STDOUT: %Dest.patt => constants.%Dest
  156. // CHECK:STDOUT: }
  157. // CHECK:STDOUT:
  158. // CHECK:STDOUT: specific @Convert(constants.%Dest, constants.%Self.2) {
  159. // CHECK:STDOUT: %Dest => constants.%Dest
  160. // CHECK:STDOUT: %ImplicitAs.type => constants.%ImplicitAs.type.2
  161. // CHECK:STDOUT: %Self => constants.%Self.2
  162. // CHECK:STDOUT: }
  163. // CHECK:STDOUT:
  164. // CHECK:STDOUT: specific @ImplicitAs(constants.%.1) {
  165. // CHECK:STDOUT: %Dest => constants.%.1
  166. // CHECK:STDOUT: %Dest.patt => constants.%.1
  167. // CHECK:STDOUT:
  168. // CHECK:STDOUT: !definition:
  169. // CHECK:STDOUT: %ImplicitAs.type => constants.%ImplicitAs.type.3
  170. // CHECK:STDOUT: %Self => constants.%Self.3
  171. // CHECK:STDOUT: %Convert.type => constants.%Convert.type.2
  172. // CHECK:STDOUT: %Convert => constants.%Convert.2
  173. // CHECK:STDOUT: %.1 => constants.%.6
  174. // CHECK:STDOUT: %.2 => constants.%.7
  175. // CHECK:STDOUT: }
  176. // CHECK:STDOUT: