impl_forall.carbon 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569
  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/lookup/no_prelude/impl_forall.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/impl/lookup/no_prelude/impl_forall.carbon
  10. // --- impl_forall.carbon
  11. class A(T:! type) {
  12. var n: T;
  13. }
  14. interface I(U:! type) {
  15. fn F[self: Self]() -> U;
  16. }
  17. impl forall [V:! type] A(V) as I(V) {
  18. fn F[self: Self]() -> V {
  19. return self.n;
  20. }
  21. }
  22. fn TestGeneric[W:! type](a: A(W)) -> W {
  23. return a.(I(W).F)();
  24. }
  25. fn TestSpecific(a: A({})) -> {} {
  26. return a.(I({}).F)();
  27. }
  28. // CHECK:STDOUT: --- impl_forall.carbon
  29. // CHECK:STDOUT:
  30. // CHECK:STDOUT: constants {
  31. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic]
  32. // CHECK:STDOUT: %T.patt: type = symbolic_binding_pattern T, 0 [symbolic]
  33. // CHECK:STDOUT: %A.type: type = generic_class_type @A [template]
  34. // CHECK:STDOUT: %A.generic: %A.type = struct_value () [template]
  35. // CHECK:STDOUT: %A.13025a.1: type = class_type @A, @A(%T) [symbolic]
  36. // CHECK:STDOUT: %require_complete.4aeca8.1: <witness> = require_complete_type %T [symbolic]
  37. // CHECK:STDOUT: %A.elem.1ceb36.1: type = unbound_element_type %A.13025a.1, %T [symbolic]
  38. // CHECK:STDOUT: %struct_type.n.848971.1: type = struct_type {.n: %T} [symbolic]
  39. // CHECK:STDOUT: %complete_type.84bb3d.1: <witness> = complete_type_witness %struct_type.n.848971.1 [symbolic]
  40. // CHECK:STDOUT: %U: type = bind_symbolic_name U, 0 [symbolic]
  41. // CHECK:STDOUT: %U.patt: type = symbolic_binding_pattern U, 0 [symbolic]
  42. // CHECK:STDOUT: %I.type.dac: type = generic_interface_type @I [template]
  43. // CHECK:STDOUT: %I.generic: %I.type.dac = struct_value () [template]
  44. // CHECK:STDOUT: %I.type.325e65.1: type = facet_type <@I, @I(%U)> [symbolic]
  45. // CHECK:STDOUT: %Self: %I.type.325e65.1 = bind_symbolic_name Self, 1 [symbolic]
  46. // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self [symbolic]
  47. // CHECK:STDOUT: %F.type.2aef59.1: type = fn_type @F.1, @I(%U) [symbolic]
  48. // CHECK:STDOUT: %F.bb2dd4.1: %F.type.2aef59.1 = struct_value () [symbolic]
  49. // CHECK:STDOUT: %I.assoc_type.955255.1: type = assoc_entity_type %I.type.325e65.1 [symbolic]
  50. // CHECK:STDOUT: %assoc0.fef501.1: %I.assoc_type.955255.1 = assoc_entity element0, @I.%F.decl [symbolic]
  51. // CHECK:STDOUT: %V: type = bind_symbolic_name V, 0 [symbolic]
  52. // CHECK:STDOUT: %V.patt: type = symbolic_binding_pattern V, 0 [symbolic]
  53. // CHECK:STDOUT: %A.13025a.2: type = class_type @A, @A(%V) [symbolic]
  54. // CHECK:STDOUT: %I.type.325e65.2: type = facet_type <@I, @I(%V)> [symbolic]
  55. // CHECK:STDOUT: %require_complete.cfebb2.1: <witness> = require_complete_type %I.type.325e65.2 [symbolic]
  56. // CHECK:STDOUT: %F.type.2aef59.2: type = fn_type @F.1, @I(%V) [symbolic]
  57. // CHECK:STDOUT: %F.bb2dd4.2: %F.type.2aef59.2 = struct_value () [symbolic]
  58. // CHECK:STDOUT: %I.assoc_type.955255.2: type = assoc_entity_type %I.type.325e65.2 [symbolic]
  59. // CHECK:STDOUT: %assoc0.fef501.2: %I.assoc_type.955255.2 = assoc_entity element0, @I.%F.decl [symbolic]
  60. // CHECK:STDOUT: %impl_witness.ab3b51.1: <witness> = impl_witness (@impl.%F.decl), @impl(%V) [symbolic]
  61. // CHECK:STDOUT: %F.type.0fea45.1: type = fn_type @F.2, @impl(%V) [symbolic]
  62. // CHECK:STDOUT: %F.d6ae34.1: %F.type.0fea45.1 = struct_value () [symbolic]
  63. // CHECK:STDOUT: %I.facet.5b0ece.1: %I.type.325e65.2 = facet_value %A.13025a.2, %impl_witness.ab3b51.1 [symbolic]
  64. // CHECK:STDOUT: %require_complete.4aeca8.2: <witness> = require_complete_type %V [symbolic]
  65. // CHECK:STDOUT: %A.elem.1ceb36.2: type = unbound_element_type %A.13025a.2, %V [symbolic]
  66. // CHECK:STDOUT: %struct_type.n.848971.2: type = struct_type {.n: %V} [symbolic]
  67. // CHECK:STDOUT: %complete_type.84bb3d.2: <witness> = complete_type_witness %struct_type.n.848971.2 [symbolic]
  68. // CHECK:STDOUT: %require_complete.5b8aee.1: <witness> = require_complete_type %A.13025a.2 [symbolic]
  69. // CHECK:STDOUT: %W: type = bind_symbolic_name W, 0 [symbolic]
  70. // CHECK:STDOUT: %W.patt: type = symbolic_binding_pattern W, 0 [symbolic]
  71. // CHECK:STDOUT: %A.13025a.3: type = class_type @A, @A(%W) [symbolic]
  72. // CHECK:STDOUT: %TestGeneric.type: type = fn_type @TestGeneric [template]
  73. // CHECK:STDOUT: %TestGeneric: %TestGeneric.type = struct_value () [template]
  74. // CHECK:STDOUT: %require_complete.4aeca8.3: <witness> = require_complete_type %W [symbolic]
  75. // CHECK:STDOUT: %A.elem.1ceb36.3: type = unbound_element_type %A.13025a.3, %W [symbolic]
  76. // CHECK:STDOUT: %struct_type.n.848971.3: type = struct_type {.n: %W} [symbolic]
  77. // CHECK:STDOUT: %complete_type.84bb3d.3: <witness> = complete_type_witness %struct_type.n.848971.3 [symbolic]
  78. // CHECK:STDOUT: %require_complete.5b8aee.2: <witness> = require_complete_type %A.13025a.3 [symbolic]
  79. // CHECK:STDOUT: %I.type.325e65.3: type = facet_type <@I, @I(%W)> [symbolic]
  80. // CHECK:STDOUT: %require_complete.cfebb2.2: <witness> = require_complete_type %I.type.325e65.3 [symbolic]
  81. // CHECK:STDOUT: %F.type.2aef59.3: type = fn_type @F.1, @I(%W) [symbolic]
  82. // CHECK:STDOUT: %F.bb2dd4.3: %F.type.2aef59.3 = struct_value () [symbolic]
  83. // CHECK:STDOUT: %I.assoc_type.955255.3: type = assoc_entity_type %I.type.325e65.3 [symbolic]
  84. // CHECK:STDOUT: %assoc0.fef501.3: %I.assoc_type.955255.3 = assoc_entity element0, @I.%F.decl [symbolic]
  85. // CHECK:STDOUT: %impl_witness.ab3b51.2: <witness> = impl_witness (@impl.%F.decl), @impl(%W) [symbolic]
  86. // CHECK:STDOUT: %F.type.0fea45.2: type = fn_type @F.2, @impl(%W) [symbolic]
  87. // CHECK:STDOUT: %F.d6ae34.2: %F.type.0fea45.2 = struct_value () [symbolic]
  88. // CHECK:STDOUT: %I.facet.5b0ece.2: %I.type.325e65.3 = facet_value %A.13025a.3, %impl_witness.ab3b51.2 [symbolic]
  89. // CHECK:STDOUT: %.051: type = fn_type_with_self_type %F.type.2aef59.3, %I.facet.5b0ece.2 [symbolic]
  90. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [template]
  91. // CHECK:STDOUT: %A.235: type = class_type @A, @A(%empty_struct_type) [template]
  92. // CHECK:STDOUT: %TestSpecific.type: type = fn_type @TestSpecific [template]
  93. // CHECK:STDOUT: %TestSpecific: %TestSpecific.type = struct_value () [template]
  94. // CHECK:STDOUT: %complete_type.357: <witness> = complete_type_witness %empty_struct_type [template]
  95. // CHECK:STDOUT: %A.elem.2af: type = unbound_element_type %A.235, %empty_struct_type [template]
  96. // CHECK:STDOUT: %struct_type.n.91c: type = struct_type {.n: %empty_struct_type} [template]
  97. // CHECK:STDOUT: %complete_type.0a6: <witness> = complete_type_witness %struct_type.n.91c [template]
  98. // CHECK:STDOUT: %I.type.885: type = facet_type <@I, @I(%empty_struct_type)> [template]
  99. // CHECK:STDOUT: %F.type.684: type = fn_type @F.1, @I(%empty_struct_type) [template]
  100. // CHECK:STDOUT: %F.a8d: %F.type.684 = struct_value () [template]
  101. // CHECK:STDOUT: %I.assoc_type.67f: type = assoc_entity_type %I.type.885 [template]
  102. // CHECK:STDOUT: %assoc0.639: %I.assoc_type.67f = assoc_entity element0, @I.%F.decl [template]
  103. // CHECK:STDOUT: %complete_type.788: <witness> = complete_type_witness %I.type.885 [template]
  104. // CHECK:STDOUT: %impl_witness.f35: <witness> = impl_witness (@impl.%F.decl), @impl(%empty_struct_type) [template]
  105. // CHECK:STDOUT: %F.type.875: type = fn_type @F.2, @impl(%empty_struct_type) [template]
  106. // CHECK:STDOUT: %F.158: %F.type.875 = struct_value () [template]
  107. // CHECK:STDOUT: %I.facet.f67: %I.type.885 = facet_value %A.235, %impl_witness.f35 [template]
  108. // CHECK:STDOUT: %.f01: type = fn_type_with_self_type %F.type.684, %I.facet.f67 [template]
  109. // CHECK:STDOUT: %empty_struct: %empty_struct_type = struct_value () [template]
  110. // CHECK:STDOUT: }
  111. // CHECK:STDOUT:
  112. // CHECK:STDOUT: file {
  113. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  114. // CHECK:STDOUT: .A = %A.decl
  115. // CHECK:STDOUT: .I = %I.decl
  116. // CHECK:STDOUT: .TestGeneric = %TestGeneric.decl
  117. // CHECK:STDOUT: .TestSpecific = %TestSpecific.decl
  118. // CHECK:STDOUT: }
  119. // CHECK:STDOUT: %A.decl: %A.type = class_decl @A [template = constants.%A.generic] {
  120. // CHECK:STDOUT: %T.patt.loc2_9.1: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc2_9.2 (constants.%T.patt)]
  121. // CHECK:STDOUT: %T.param_patt: type = value_param_pattern %T.patt.loc2_9.1, runtime_param<none> [symbolic = %T.patt.loc2_9.2 (constants.%T.patt)]
  122. // CHECK:STDOUT: } {
  123. // CHECK:STDOUT: %T.param: type = value_param runtime_param<none>
  124. // CHECK:STDOUT: %T.loc2_9.1: type = bind_symbolic_name T, 0, %T.param [symbolic = %T.loc2_9.2 (constants.%T)]
  125. // CHECK:STDOUT: }
  126. // CHECK:STDOUT: %I.decl: %I.type.dac = interface_decl @I [template = constants.%I.generic] {
  127. // CHECK:STDOUT: %U.patt.loc6_13.1: type = symbolic_binding_pattern U, 0 [symbolic = %U.patt.loc6_13.2 (constants.%U.patt)]
  128. // CHECK:STDOUT: %U.param_patt: type = value_param_pattern %U.patt.loc6_13.1, runtime_param<none> [symbolic = %U.patt.loc6_13.2 (constants.%U.patt)]
  129. // CHECK:STDOUT: } {
  130. // CHECK:STDOUT: %U.param: type = value_param runtime_param<none>
  131. // CHECK:STDOUT: %U.loc6_13.1: type = bind_symbolic_name U, 0, %U.param [symbolic = %U.loc6_13.2 (constants.%U)]
  132. // CHECK:STDOUT: }
  133. // CHECK:STDOUT: impl_decl @impl [template] {
  134. // CHECK:STDOUT: %V.patt.loc10_14.1: type = symbolic_binding_pattern V, 0 [symbolic = %V.patt.loc10_14.2 (constants.%V.patt)]
  135. // CHECK:STDOUT: %V.param_patt: type = value_param_pattern %V.patt.loc10_14.1, runtime_param<none> [symbolic = %V.patt.loc10_14.2 (constants.%V.patt)]
  136. // CHECK:STDOUT: } {
  137. // CHECK:STDOUT: %A.ref: %A.type = name_ref A, file.%A.decl [template = constants.%A.generic]
  138. // CHECK:STDOUT: %V.ref.loc10_26: type = name_ref V, %V.loc10_14.1 [symbolic = %V.loc10_14.2 (constants.%V)]
  139. // CHECK:STDOUT: %A.loc10_27.1: type = class_type @A, @A(constants.%V) [symbolic = %A.loc10_27.2 (constants.%A.13025a.2)]
  140. // CHECK:STDOUT: %I.ref: %I.type.dac = name_ref I, file.%I.decl [template = constants.%I.generic]
  141. // CHECK:STDOUT: %V.ref.loc10_34: type = name_ref V, %V.loc10_14.1 [symbolic = %V.loc10_14.2 (constants.%V)]
  142. // CHECK:STDOUT: %I.type.loc10_35.1: type = facet_type <@I, @I(constants.%V)> [symbolic = %I.type.loc10_35.2 (constants.%I.type.325e65.2)]
  143. // CHECK:STDOUT: %V.param: type = value_param runtime_param<none>
  144. // CHECK:STDOUT: %V.loc10_14.1: type = bind_symbolic_name V, 0, %V.param [symbolic = %V.loc10_14.2 (constants.%V)]
  145. // CHECK:STDOUT: }
  146. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (@impl.%F.decl), @impl(constants.%V) [symbolic = @impl.%impl_witness (constants.%impl_witness.ab3b51.1)]
  147. // CHECK:STDOUT: %TestGeneric.decl: %TestGeneric.type = fn_decl @TestGeneric [template = constants.%TestGeneric] {
  148. // CHECK:STDOUT: %W.patt.loc16_16.1: type = symbolic_binding_pattern W, 0 [symbolic = %W.patt.loc16_16.2 (constants.%W.patt)]
  149. // CHECK:STDOUT: %W.param_patt: type = value_param_pattern %W.patt.loc16_16.1, runtime_param<none> [symbolic = %W.patt.loc16_16.2 (constants.%W.patt)]
  150. // CHECK:STDOUT: %a.patt: @TestGeneric.%A.loc16_32.2 (%A.13025a.3) = binding_pattern a
  151. // CHECK:STDOUT: %a.param_patt: @TestGeneric.%A.loc16_32.2 (%A.13025a.3) = value_param_pattern %a.patt, runtime_param0
  152. // CHECK:STDOUT: %return.patt: @TestGeneric.%W.loc16_16.2 (%W) = return_slot_pattern
  153. // CHECK:STDOUT: %return.param_patt: @TestGeneric.%W.loc16_16.2 (%W) = out_param_pattern %return.patt, runtime_param1
  154. // CHECK:STDOUT: } {
  155. // CHECK:STDOUT: %W.ref.loc16_38: type = name_ref W, %W.loc16_16.1 [symbolic = %W.loc16_16.2 (constants.%W)]
  156. // CHECK:STDOUT: %W.param: type = value_param runtime_param<none>
  157. // CHECK:STDOUT: %W.loc16_16.1: type = bind_symbolic_name W, 0, %W.param [symbolic = %W.loc16_16.2 (constants.%W)]
  158. // CHECK:STDOUT: %a.param: @TestGeneric.%A.loc16_32.2 (%A.13025a.3) = value_param runtime_param0
  159. // CHECK:STDOUT: %.loc16: type = splice_block %A.loc16_32.1 [symbolic = %A.loc16_32.2 (constants.%A.13025a.3)] {
  160. // CHECK:STDOUT: %A.ref: %A.type = name_ref A, file.%A.decl [template = constants.%A.generic]
  161. // CHECK:STDOUT: %W.ref.loc16_31: type = name_ref W, %W.loc16_16.1 [symbolic = %W.loc16_16.2 (constants.%W)]
  162. // CHECK:STDOUT: %A.loc16_32.1: type = class_type @A, @A(constants.%W) [symbolic = %A.loc16_32.2 (constants.%A.13025a.3)]
  163. // CHECK:STDOUT: }
  164. // CHECK:STDOUT: %a: @TestGeneric.%A.loc16_32.2 (%A.13025a.3) = bind_name a, %a.param
  165. // CHECK:STDOUT: %return.param: ref @TestGeneric.%W.loc16_16.2 (%W) = out_param runtime_param1
  166. // CHECK:STDOUT: %return: ref @TestGeneric.%W.loc16_16.2 (%W) = return_slot %return.param
  167. // CHECK:STDOUT: }
  168. // CHECK:STDOUT: %TestSpecific.decl: %TestSpecific.type = fn_decl @TestSpecific [template = constants.%TestSpecific] {
  169. // CHECK:STDOUT: %a.patt: %A.235 = binding_pattern a
  170. // CHECK:STDOUT: %a.param_patt: %A.235 = value_param_pattern %a.patt, runtime_param0
  171. // CHECK:STDOUT: %return.patt: %empty_struct_type = return_slot_pattern
  172. // CHECK:STDOUT: %return.param_patt: %empty_struct_type = out_param_pattern %return.patt, runtime_param1
  173. // CHECK:STDOUT: } {
  174. // CHECK:STDOUT: %.loc20_31.1: %empty_struct_type = struct_literal ()
  175. // CHECK:STDOUT: %.loc20_31.2: type = converted %.loc20_31.1, constants.%empty_struct_type [template = constants.%empty_struct_type]
  176. // CHECK:STDOUT: %a.param: %A.235 = value_param runtime_param0
  177. // CHECK:STDOUT: %.loc20_24.1: type = splice_block %A [template = constants.%A.235] {
  178. // CHECK:STDOUT: %A.ref: %A.type = name_ref A, file.%A.decl [template = constants.%A.generic]
  179. // CHECK:STDOUT: %.loc20_23: %empty_struct_type = struct_literal ()
  180. // CHECK:STDOUT: %.loc20_24.2: type = converted %.loc20_23, constants.%empty_struct_type [template = constants.%empty_struct_type]
  181. // CHECK:STDOUT: %A: type = class_type @A, @A(constants.%empty_struct_type) [template = constants.%A.235]
  182. // CHECK:STDOUT: }
  183. // CHECK:STDOUT: %a: %A.235 = bind_name a, %a.param
  184. // CHECK:STDOUT: %return.param: ref %empty_struct_type = out_param runtime_param1
  185. // CHECK:STDOUT: %return: ref %empty_struct_type = return_slot %return.param
  186. // CHECK:STDOUT: }
  187. // CHECK:STDOUT: }
  188. // CHECK:STDOUT:
  189. // CHECK:STDOUT: generic interface @I(%U.loc6_13.1: type) {
  190. // CHECK:STDOUT: %U.loc6_13.2: type = bind_symbolic_name U, 0 [symbolic = %U.loc6_13.2 (constants.%U)]
  191. // CHECK:STDOUT: %U.patt.loc6_13.2: type = symbolic_binding_pattern U, 0 [symbolic = %U.patt.loc6_13.2 (constants.%U.patt)]
  192. // CHECK:STDOUT:
  193. // CHECK:STDOUT: !definition:
  194. // CHECK:STDOUT: %I.type: type = facet_type <@I, @I(%U.loc6_13.2)> [symbolic = %I.type (constants.%I.type.325e65.1)]
  195. // CHECK:STDOUT: %Self.2: %I.type.325e65.1 = bind_symbolic_name Self, 1 [symbolic = %Self.2 (constants.%Self)]
  196. // CHECK:STDOUT: %F.type: type = fn_type @F.1, @I(%U.loc6_13.2) [symbolic = %F.type (constants.%F.type.2aef59.1)]
  197. // CHECK:STDOUT: %F: @I.%F.type (%F.type.2aef59.1) = struct_value () [symbolic = %F (constants.%F.bb2dd4.1)]
  198. // CHECK:STDOUT: %I.assoc_type: type = assoc_entity_type @I.%I.type (%I.type.325e65.1) [symbolic = %I.assoc_type (constants.%I.assoc_type.955255.1)]
  199. // CHECK:STDOUT: %assoc0.loc7_26.2: @I.%I.assoc_type (%I.assoc_type.955255.1) = assoc_entity element0, %F.decl [symbolic = %assoc0.loc7_26.2 (constants.%assoc0.fef501.1)]
  200. // CHECK:STDOUT:
  201. // CHECK:STDOUT: interface {
  202. // CHECK:STDOUT: %Self.1: @I.%I.type (%I.type.325e65.1) = bind_symbolic_name Self, 1 [symbolic = %Self.2 (constants.%Self)]
  203. // CHECK:STDOUT: %F.decl: @I.%F.type (%F.type.2aef59.1) = fn_decl @F.1 [symbolic = @I.%F (constants.%F.bb2dd4.1)] {
  204. // CHECK:STDOUT: %self.patt: @F.1.%Self.as_type.loc7_14.1 (%Self.as_type) = binding_pattern self
  205. // CHECK:STDOUT: %self.param_patt: @F.1.%Self.as_type.loc7_14.1 (%Self.as_type) = value_param_pattern %self.patt, runtime_param0
  206. // CHECK:STDOUT: %return.patt: @F.1.%U (%U) = return_slot_pattern
  207. // CHECK:STDOUT: %return.param_patt: @F.1.%U (%U) = out_param_pattern %return.patt, runtime_param1
  208. // CHECK:STDOUT: } {
  209. // CHECK:STDOUT: %U.ref: type = name_ref U, @I.%U.loc6_13.1 [symbolic = %U (constants.%U)]
  210. // CHECK:STDOUT: %self.param: @F.1.%Self.as_type.loc7_14.1 (%Self.as_type) = value_param runtime_param0
  211. // CHECK:STDOUT: %.loc7_14.1: type = splice_block %.loc7_14.3 [symbolic = %Self.as_type.loc7_14.1 (constants.%Self.as_type)] {
  212. // CHECK:STDOUT: %.loc7_14.2: @F.1.%I.type (%I.type.325e65.1) = specific_constant @I.%Self.1, @I(constants.%U) [symbolic = %Self (constants.%Self)]
  213. // CHECK:STDOUT: %Self.ref: @F.1.%I.type (%I.type.325e65.1) = name_ref Self, %.loc7_14.2 [symbolic = %Self (constants.%Self)]
  214. // CHECK:STDOUT: %Self.as_type.loc7_14.2: type = facet_access_type %Self.ref [symbolic = %Self.as_type.loc7_14.1 (constants.%Self.as_type)]
  215. // CHECK:STDOUT: %.loc7_14.3: type = converted %Self.ref, %Self.as_type.loc7_14.2 [symbolic = %Self.as_type.loc7_14.1 (constants.%Self.as_type)]
  216. // CHECK:STDOUT: }
  217. // CHECK:STDOUT: %self: @F.1.%Self.as_type.loc7_14.1 (%Self.as_type) = bind_name self, %self.param
  218. // CHECK:STDOUT: %return.param: ref @F.1.%U (%U) = out_param runtime_param1
  219. // CHECK:STDOUT: %return: ref @F.1.%U (%U) = return_slot %return.param
  220. // CHECK:STDOUT: }
  221. // CHECK:STDOUT: %assoc0.loc7_26.1: @I.%I.assoc_type (%I.assoc_type.955255.1) = assoc_entity element0, %F.decl [symbolic = %assoc0.loc7_26.2 (constants.%assoc0.fef501.1)]
  222. // CHECK:STDOUT:
  223. // CHECK:STDOUT: !members:
  224. // CHECK:STDOUT: .Self = %Self.1
  225. // CHECK:STDOUT: .F = %assoc0.loc7_26.1
  226. // CHECK:STDOUT: witness = (%F.decl)
  227. // CHECK:STDOUT: }
  228. // CHECK:STDOUT: }
  229. // CHECK:STDOUT:
  230. // CHECK:STDOUT: generic impl @impl(%V.loc10_14.1: type) {
  231. // CHECK:STDOUT: %V.loc10_14.2: type = bind_symbolic_name V, 0 [symbolic = %V.loc10_14.2 (constants.%V)]
  232. // CHECK:STDOUT: %V.patt.loc10_14.2: type = symbolic_binding_pattern V, 0 [symbolic = %V.patt.loc10_14.2 (constants.%V.patt)]
  233. // CHECK:STDOUT: %A.loc10_27.2: type = class_type @A, @A(%V.loc10_14.2) [symbolic = %A.loc10_27.2 (constants.%A.13025a.2)]
  234. // CHECK:STDOUT: %I.type.loc10_35.2: type = facet_type <@I, @I(%V.loc10_14.2)> [symbolic = %I.type.loc10_35.2 (constants.%I.type.325e65.2)]
  235. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type @impl.%I.type.loc10_35.2 (%I.type.325e65.2) [symbolic = %require_complete (constants.%require_complete.cfebb2.1)]
  236. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (%F.decl), @impl(%V.loc10_14.2) [symbolic = %impl_witness (constants.%impl_witness.ab3b51.1)]
  237. // CHECK:STDOUT:
  238. // CHECK:STDOUT: !definition:
  239. // CHECK:STDOUT: %F.type: type = fn_type @F.2, @impl(%V.loc10_14.2) [symbolic = %F.type (constants.%F.type.0fea45.1)]
  240. // CHECK:STDOUT: %F: @impl.%F.type (%F.type.0fea45.1) = struct_value () [symbolic = %F (constants.%F.d6ae34.1)]
  241. // CHECK:STDOUT:
  242. // CHECK:STDOUT: impl: %A.loc10_27.1 as %I.type.loc10_35.1 {
  243. // CHECK:STDOUT: %F.decl: @impl.%F.type (%F.type.0fea45.1) = fn_decl @F.2 [symbolic = @impl.%F (constants.%F.d6ae34.1)] {
  244. // CHECK:STDOUT: %self.patt: @F.2.%A (%A.13025a.2) = binding_pattern self
  245. // CHECK:STDOUT: %self.param_patt: @F.2.%A (%A.13025a.2) = value_param_pattern %self.patt, runtime_param0
  246. // CHECK:STDOUT: %return.patt: @F.2.%V (%V) = return_slot_pattern
  247. // CHECK:STDOUT: %return.param_patt: @F.2.%V (%V) = out_param_pattern %return.patt, runtime_param1
  248. // CHECK:STDOUT: } {
  249. // CHECK:STDOUT: %V.ref: type = name_ref V, @impl.%V.loc10_14.1 [symbolic = %V (constants.%V)]
  250. // CHECK:STDOUT: %self.param: @F.2.%A (%A.13025a.2) = value_param runtime_param0
  251. // CHECK:STDOUT: %Self.ref: type = name_ref Self, @impl.%A.loc10_27.1 [symbolic = %A (constants.%A.13025a.2)]
  252. // CHECK:STDOUT: %self: @F.2.%A (%A.13025a.2) = bind_name self, %self.param
  253. // CHECK:STDOUT: %return.param: ref @F.2.%V (%V) = out_param runtime_param1
  254. // CHECK:STDOUT: %return: ref @F.2.%V (%V) = return_slot %return.param
  255. // CHECK:STDOUT: }
  256. // CHECK:STDOUT:
  257. // CHECK:STDOUT: !members:
  258. // CHECK:STDOUT: .F = %F.decl
  259. // CHECK:STDOUT: witness = file.%impl_witness
  260. // CHECK:STDOUT: }
  261. // CHECK:STDOUT: }
  262. // CHECK:STDOUT:
  263. // CHECK:STDOUT: generic class @A(%T.loc2_9.1: type) {
  264. // CHECK:STDOUT: %T.loc2_9.2: type = bind_symbolic_name T, 0 [symbolic = %T.loc2_9.2 (constants.%T)]
  265. // CHECK:STDOUT: %T.patt.loc2_9.2: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc2_9.2 (constants.%T.patt)]
  266. // CHECK:STDOUT:
  267. // CHECK:STDOUT: !definition:
  268. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type @A.%T.loc2_9.2 (%T) [symbolic = %require_complete (constants.%require_complete.4aeca8.1)]
  269. // CHECK:STDOUT: %A: type = class_type @A, @A(%T.loc2_9.2) [symbolic = %A (constants.%A.13025a.1)]
  270. // CHECK:STDOUT: %A.elem: type = unbound_element_type @A.%A (%A.13025a.1), @A.%T.loc2_9.2 (%T) [symbolic = %A.elem (constants.%A.elem.1ceb36.1)]
  271. // CHECK:STDOUT: %struct_type.n: type = struct_type {.n: @A.%T.loc2_9.2 (%T)} [symbolic = %struct_type.n (constants.%struct_type.n.848971.1)]
  272. // CHECK:STDOUT: %complete_type.loc4_1.2: <witness> = complete_type_witness @A.%struct_type.n (%struct_type.n.848971.1) [symbolic = %complete_type.loc4_1.2 (constants.%complete_type.84bb3d.1)]
  273. // CHECK:STDOUT:
  274. // CHECK:STDOUT: class {
  275. // CHECK:STDOUT: %.loc3_8: @A.%A.elem (%A.elem.1ceb36.1) = field_decl n, element0 [template]
  276. // CHECK:STDOUT: name_binding_decl {
  277. // CHECK:STDOUT: %.loc3_3: @A.%A.elem (%A.elem.1ceb36.1) = var_pattern %.loc3_8
  278. // CHECK:STDOUT: }
  279. // CHECK:STDOUT: %.var: ref @A.%A.elem (%A.elem.1ceb36.1) = var <none>
  280. // CHECK:STDOUT: %complete_type.loc4_1.1: <witness> = complete_type_witness %struct_type.n.848971.1 [symbolic = %complete_type.loc4_1.2 (constants.%complete_type.84bb3d.1)]
  281. // CHECK:STDOUT: complete_type_witness = %complete_type.loc4_1.1
  282. // CHECK:STDOUT:
  283. // CHECK:STDOUT: !members:
  284. // CHECK:STDOUT: .Self = constants.%A.13025a.1
  285. // CHECK:STDOUT: .n = %.loc3_8
  286. // CHECK:STDOUT: }
  287. // CHECK:STDOUT: }
  288. // CHECK:STDOUT:
  289. // CHECK:STDOUT: generic fn @F.1(@I.%U.loc6_13.1: type, @I.%Self.1: @I.%I.type (%I.type.325e65.1)) {
  290. // CHECK:STDOUT: %U: type = bind_symbolic_name U, 0 [symbolic = %U (constants.%U)]
  291. // CHECK:STDOUT: %I.type: type = facet_type <@I, @I(%U)> [symbolic = %I.type (constants.%I.type.325e65.1)]
  292. // CHECK:STDOUT: %Self: %I.type.325e65.1 = bind_symbolic_name Self, 1 [symbolic = %Self (constants.%Self)]
  293. // CHECK:STDOUT: %Self.as_type.loc7_14.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc7_14.1 (constants.%Self.as_type)]
  294. // CHECK:STDOUT:
  295. // CHECK:STDOUT: fn[%self.param_patt: @F.1.%Self.as_type.loc7_14.1 (%Self.as_type)]() -> @F.1.%U (%U);
  296. // CHECK:STDOUT: }
  297. // CHECK:STDOUT:
  298. // CHECK:STDOUT: generic fn @F.2(@impl.%V.loc10_14.1: type) {
  299. // CHECK:STDOUT: %V: type = bind_symbolic_name V, 0 [symbolic = %V (constants.%V)]
  300. // CHECK:STDOUT: %A: type = class_type @A, @A(%V) [symbolic = %A (constants.%A.13025a.2)]
  301. // CHECK:STDOUT:
  302. // CHECK:STDOUT: !definition:
  303. // CHECK:STDOUT: %require_complete.loc11_22: <witness> = require_complete_type @F.2.%V (%V) [symbolic = %require_complete.loc11_22 (constants.%require_complete.4aeca8.2)]
  304. // CHECK:STDOUT: %require_complete.loc11_12: <witness> = require_complete_type @F.2.%A (%A.13025a.2) [symbolic = %require_complete.loc11_12 (constants.%require_complete.5b8aee.1)]
  305. // CHECK:STDOUT: %A.elem: type = unbound_element_type @F.2.%A (%A.13025a.2), @F.2.%V (%V) [symbolic = %A.elem (constants.%A.elem.1ceb36.2)]
  306. // CHECK:STDOUT:
  307. // CHECK:STDOUT: fn[%self.param_patt: @F.2.%A (%A.13025a.2)]() -> @F.2.%V (%V) {
  308. // CHECK:STDOUT: !entry:
  309. // CHECK:STDOUT: %self.ref: @F.2.%A (%A.13025a.2) = name_ref self, %self
  310. // CHECK:STDOUT: %n.ref: @F.2.%A.elem (%A.elem.1ceb36.2) = name_ref n, @A.%.loc3_8 [template = @A.%.loc3_8]
  311. // CHECK:STDOUT: %.loc12_16.1: ref @F.2.%V (%V) = class_element_access %self.ref, element0
  312. // CHECK:STDOUT: %.loc12_16.2: @F.2.%V (%V) = bind_value %.loc12_16.1
  313. // CHECK:STDOUT: return %.loc12_16.2
  314. // CHECK:STDOUT: }
  315. // CHECK:STDOUT: }
  316. // CHECK:STDOUT:
  317. // CHECK:STDOUT: generic fn @TestGeneric(%W.loc16_16.1: type) {
  318. // CHECK:STDOUT: %W.loc16_16.2: type = bind_symbolic_name W, 0 [symbolic = %W.loc16_16.2 (constants.%W)]
  319. // CHECK:STDOUT: %W.patt.loc16_16.2: type = symbolic_binding_pattern W, 0 [symbolic = %W.patt.loc16_16.2 (constants.%W.patt)]
  320. // CHECK:STDOUT: %A.loc16_32.2: type = class_type @A, @A(%W.loc16_16.2) [symbolic = %A.loc16_32.2 (constants.%A.13025a.3)]
  321. // CHECK:STDOUT:
  322. // CHECK:STDOUT: !definition:
  323. // CHECK:STDOUT: %require_complete.loc16_35: <witness> = require_complete_type @TestGeneric.%W.loc16_16.2 (%W) [symbolic = %require_complete.loc16_35 (constants.%require_complete.4aeca8.3)]
  324. // CHECK:STDOUT: %require_complete.loc16_27: <witness> = require_complete_type @TestGeneric.%A.loc16_32.2 (%A.13025a.3) [symbolic = %require_complete.loc16_27 (constants.%require_complete.5b8aee.2)]
  325. // CHECK:STDOUT: %I.type.loc17_16.2: type = facet_type <@I, @I(%W.loc16_16.2)> [symbolic = %I.type.loc17_16.2 (constants.%I.type.325e65.3)]
  326. // CHECK:STDOUT: %require_complete.loc17: <witness> = require_complete_type @TestGeneric.%I.type.loc17_16.2 (%I.type.325e65.3) [symbolic = %require_complete.loc17 (constants.%require_complete.cfebb2.2)]
  327. // CHECK:STDOUT: %I.assoc_type: type = assoc_entity_type @TestGeneric.%I.type.loc17_16.2 (%I.type.325e65.3) [symbolic = %I.assoc_type (constants.%I.assoc_type.955255.3)]
  328. // CHECK:STDOUT: %assoc0: @TestGeneric.%I.assoc_type (%I.assoc_type.955255.3) = assoc_entity element0, @I.%F.decl [symbolic = %assoc0 (constants.%assoc0.fef501.3)]
  329. // CHECK:STDOUT: %F.type.loc17_11.1: type = fn_type @F.1, @I(%W.loc16_16.2) [symbolic = %F.type.loc17_11.1 (constants.%F.type.2aef59.3)]
  330. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (@impl.%F.decl), @impl(%W.loc16_16.2) [symbolic = %impl_witness (constants.%impl_witness.ab3b51.2)]
  331. // CHECK:STDOUT: %I.facet: @TestGeneric.%I.type.loc17_16.2 (%I.type.325e65.3) = facet_value %A.loc16_32.2, %impl_witness [symbolic = %I.facet (constants.%I.facet.5b0ece.2)]
  332. // CHECK:STDOUT: %.loc17_11: type = fn_type_with_self_type %F.type.loc17_11.1, %I.facet [symbolic = %.loc17_11 (constants.%.051)]
  333. // CHECK:STDOUT: %F.type.loc17_11.2: type = fn_type @F.2, @impl(%W.loc16_16.2) [symbolic = %F.type.loc17_11.2 (constants.%F.type.0fea45.2)]
  334. // CHECK:STDOUT: %F: @TestGeneric.%F.type.loc17_11.2 (%F.type.0fea45.2) = struct_value () [symbolic = %F (constants.%F.d6ae34.2)]
  335. // CHECK:STDOUT:
  336. // CHECK:STDOUT: fn[%W.param_patt: type](%a.param_patt: @TestGeneric.%A.loc16_32.2 (%A.13025a.3)) -> @TestGeneric.%W.loc16_16.2 (%W) {
  337. // CHECK:STDOUT: !entry:
  338. // CHECK:STDOUT: %a.ref: @TestGeneric.%A.loc16_32.2 (%A.13025a.3) = name_ref a, %a
  339. // CHECK:STDOUT: %I.ref: %I.type.dac = name_ref I, file.%I.decl [template = constants.%I.generic]
  340. // CHECK:STDOUT: %W.ref.loc17: type = name_ref W, %W.loc16_16.1 [symbolic = %W.loc16_16.2 (constants.%W)]
  341. // CHECK:STDOUT: %I.type.loc17_16.1: type = facet_type <@I, @I(constants.%W)> [symbolic = %I.type.loc17_16.2 (constants.%I.type.325e65.3)]
  342. // CHECK:STDOUT: %.loc17_17: @TestGeneric.%I.assoc_type (%I.assoc_type.955255.3) = specific_constant @I.%assoc0.loc7_26.1, @I(constants.%W) [symbolic = %assoc0 (constants.%assoc0.fef501.3)]
  343. // CHECK:STDOUT: %F.ref: @TestGeneric.%I.assoc_type (%I.assoc_type.955255.3) = name_ref F, %.loc17_17 [symbolic = %assoc0 (constants.%assoc0.fef501.3)]
  344. // CHECK:STDOUT: %impl.elem0: @TestGeneric.%.loc17_11 (%.051) = impl_witness_access constants.%impl_witness.ab3b51.2, element0 [symbolic = %F (constants.%F.d6ae34.2)]
  345. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %a.ref, %impl.elem0
  346. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %bound_method, @F.2(constants.%W)
  347. // CHECK:STDOUT: %F.call: init @TestGeneric.%W.loc16_16.2 (%W) = call %specific_fn(%a.ref)
  348. // CHECK:STDOUT: %.loc17_22.1: @TestGeneric.%W.loc16_16.2 (%W) = value_of_initializer %F.call
  349. // CHECK:STDOUT: %.loc17_22.2: @TestGeneric.%W.loc16_16.2 (%W) = converted %F.call, %.loc17_22.1
  350. // CHECK:STDOUT: return %.loc17_22.2
  351. // CHECK:STDOUT: }
  352. // CHECK:STDOUT: }
  353. // CHECK:STDOUT:
  354. // CHECK:STDOUT: fn @TestSpecific(%a.param_patt: %A.235) -> %empty_struct_type {
  355. // CHECK:STDOUT: !entry:
  356. // CHECK:STDOUT: %a.ref: %A.235 = name_ref a, %a
  357. // CHECK:STDOUT: %I.ref: %I.type.dac = name_ref I, file.%I.decl [template = constants.%I.generic]
  358. // CHECK:STDOUT: %.loc21_16: %empty_struct_type = struct_literal ()
  359. // CHECK:STDOUT: %.loc21_17: type = converted %.loc21_16, constants.%empty_struct_type [template = constants.%empty_struct_type]
  360. // CHECK:STDOUT: %I.type: type = facet_type <@I, @I(constants.%empty_struct_type)> [template = constants.%I.type.885]
  361. // CHECK:STDOUT: %.loc21_18: %I.assoc_type.67f = specific_constant @I.%assoc0.loc7_26.1, @I(constants.%empty_struct_type) [template = constants.%assoc0.639]
  362. // CHECK:STDOUT: %F.ref: %I.assoc_type.67f = name_ref F, %.loc21_18 [template = constants.%assoc0.639]
  363. // CHECK:STDOUT: %impl.elem0: %.f01 = impl_witness_access constants.%impl_witness.f35, element0 [template = constants.%F.158]
  364. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %a.ref, %impl.elem0
  365. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %bound_method, @F.2(constants.%empty_struct_type)
  366. // CHECK:STDOUT: %F.call: init %empty_struct_type = call %specific_fn(%a.ref)
  367. // CHECK:STDOUT: %.loc21_22.1: ref %empty_struct_type = temporary_storage
  368. // CHECK:STDOUT: %.loc21_22.2: ref %empty_struct_type = temporary %.loc21_22.1, %F.call
  369. // CHECK:STDOUT: %empty_struct: %empty_struct_type = struct_value () [template = constants.%empty_struct]
  370. // CHECK:STDOUT: %.loc21_23: %empty_struct_type = converted %F.call, %empty_struct [template = constants.%empty_struct]
  371. // CHECK:STDOUT: return %.loc21_23
  372. // CHECK:STDOUT: }
  373. // CHECK:STDOUT:
  374. // CHECK:STDOUT: specific @A(constants.%T) {
  375. // CHECK:STDOUT: %T.loc2_9.2 => constants.%T
  376. // CHECK:STDOUT: %T.patt.loc2_9.2 => constants.%T
  377. // CHECK:STDOUT: }
  378. // CHECK:STDOUT:
  379. // CHECK:STDOUT: specific @A(%T.loc2_9.2) {}
  380. // CHECK:STDOUT:
  381. // CHECK:STDOUT: specific @I(constants.%U) {
  382. // CHECK:STDOUT: %U.loc6_13.2 => constants.%U
  383. // CHECK:STDOUT: %U.patt.loc6_13.2 => constants.%U
  384. // CHECK:STDOUT: }
  385. // CHECK:STDOUT:
  386. // CHECK:STDOUT: specific @F.1(constants.%U, constants.%Self) {
  387. // CHECK:STDOUT: %U => constants.%U
  388. // CHECK:STDOUT: %I.type => constants.%I.type.325e65.1
  389. // CHECK:STDOUT: %Self => constants.%Self
  390. // CHECK:STDOUT: %Self.as_type.loc7_14.1 => constants.%Self.as_type
  391. // CHECK:STDOUT: }
  392. // CHECK:STDOUT:
  393. // CHECK:STDOUT: specific @I(@F.1.%U) {}
  394. // CHECK:STDOUT:
  395. // CHECK:STDOUT: specific @I(%U.loc6_13.2) {}
  396. // CHECK:STDOUT:
  397. // CHECK:STDOUT: specific @A(constants.%V) {
  398. // CHECK:STDOUT: %T.loc2_9.2 => constants.%V
  399. // CHECK:STDOUT: %T.patt.loc2_9.2 => constants.%V
  400. // CHECK:STDOUT:
  401. // CHECK:STDOUT: !definition:
  402. // CHECK:STDOUT: %require_complete => constants.%require_complete.4aeca8.2
  403. // CHECK:STDOUT: %A => constants.%A.13025a.2
  404. // CHECK:STDOUT: %A.elem => constants.%A.elem.1ceb36.2
  405. // CHECK:STDOUT: %struct_type.n => constants.%struct_type.n.848971.2
  406. // CHECK:STDOUT: %complete_type.loc4_1.2 => constants.%complete_type.84bb3d.2
  407. // CHECK:STDOUT: }
  408. // CHECK:STDOUT:
  409. // CHECK:STDOUT: specific @I(constants.%V) {
  410. // CHECK:STDOUT: %U.loc6_13.2 => constants.%V
  411. // CHECK:STDOUT: %U.patt.loc6_13.2 => constants.%V
  412. // CHECK:STDOUT:
  413. // CHECK:STDOUT: !definition:
  414. // CHECK:STDOUT: %I.type => constants.%I.type.325e65.2
  415. // CHECK:STDOUT: %Self.2 => constants.%Self
  416. // CHECK:STDOUT: %F.type => constants.%F.type.2aef59.2
  417. // CHECK:STDOUT: %F => constants.%F.bb2dd4.2
  418. // CHECK:STDOUT: %I.assoc_type => constants.%I.assoc_type.955255.2
  419. // CHECK:STDOUT: %assoc0.loc7_26.2 => constants.%assoc0.fef501.2
  420. // CHECK:STDOUT: }
  421. // CHECK:STDOUT:
  422. // CHECK:STDOUT: specific @impl(constants.%V) {
  423. // CHECK:STDOUT: %V.loc10_14.2 => constants.%V
  424. // CHECK:STDOUT: %V.patt.loc10_14.2 => constants.%V
  425. // CHECK:STDOUT: %A.loc10_27.2 => constants.%A.13025a.2
  426. // CHECK:STDOUT: %I.type.loc10_35.2 => constants.%I.type.325e65.2
  427. // CHECK:STDOUT: %require_complete => constants.%require_complete.cfebb2.1
  428. // CHECK:STDOUT: %impl_witness => constants.%impl_witness.ab3b51.1
  429. // CHECK:STDOUT:
  430. // CHECK:STDOUT: !definition:
  431. // CHECK:STDOUT: %F.type => constants.%F.type.0fea45.1
  432. // CHECK:STDOUT: %F => constants.%F.d6ae34.1
  433. // CHECK:STDOUT: }
  434. // CHECK:STDOUT:
  435. // CHECK:STDOUT: specific @A(@impl.%V.loc10_14.2) {}
  436. // CHECK:STDOUT:
  437. // CHECK:STDOUT: specific @I(@impl.%V.loc10_14.2) {}
  438. // CHECK:STDOUT:
  439. // CHECK:STDOUT: specific @impl(%V.loc10_14.2) {}
  440. // CHECK:STDOUT:
  441. // CHECK:STDOUT: specific @F.2(constants.%V) {
  442. // CHECK:STDOUT: %V => constants.%V
  443. // CHECK:STDOUT: %A => constants.%A.13025a.2
  444. // CHECK:STDOUT: }
  445. // CHECK:STDOUT:
  446. // CHECK:STDOUT: specific @A(@F.2.%V) {}
  447. // CHECK:STDOUT:
  448. // CHECK:STDOUT: specific @F.1(constants.%V, constants.%I.facet.5b0ece.1) {
  449. // CHECK:STDOUT: %U => constants.%V
  450. // CHECK:STDOUT: %I.type => constants.%I.type.325e65.2
  451. // CHECK:STDOUT: %Self => constants.%I.facet.5b0ece.1
  452. // CHECK:STDOUT: %Self.as_type.loc7_14.1 => constants.%A.13025a.2
  453. // CHECK:STDOUT: }
  454. // CHECK:STDOUT:
  455. // CHECK:STDOUT: specific @A(constants.%W) {
  456. // CHECK:STDOUT: %T.loc2_9.2 => constants.%W
  457. // CHECK:STDOUT: %T.patt.loc2_9.2 => constants.%W
  458. // CHECK:STDOUT:
  459. // CHECK:STDOUT: !definition:
  460. // CHECK:STDOUT: %require_complete => constants.%require_complete.4aeca8.3
  461. // CHECK:STDOUT: %A => constants.%A.13025a.3
  462. // CHECK:STDOUT: %A.elem => constants.%A.elem.1ceb36.3
  463. // CHECK:STDOUT: %struct_type.n => constants.%struct_type.n.848971.3
  464. // CHECK:STDOUT: %complete_type.loc4_1.2 => constants.%complete_type.84bb3d.3
  465. // CHECK:STDOUT: }
  466. // CHECK:STDOUT:
  467. // CHECK:STDOUT: specific @TestGeneric(constants.%W) {
  468. // CHECK:STDOUT: %W.loc16_16.2 => constants.%W
  469. // CHECK:STDOUT: %W.patt.loc16_16.2 => constants.%W
  470. // CHECK:STDOUT: %A.loc16_32.2 => constants.%A.13025a.3
  471. // CHECK:STDOUT: }
  472. // CHECK:STDOUT:
  473. // CHECK:STDOUT: specific @A(@TestGeneric.%W.loc16_16.2) {}
  474. // CHECK:STDOUT:
  475. // CHECK:STDOUT: specific @I(constants.%W) {
  476. // CHECK:STDOUT: %U.loc6_13.2 => constants.%W
  477. // CHECK:STDOUT: %U.patt.loc6_13.2 => constants.%W
  478. // CHECK:STDOUT:
  479. // CHECK:STDOUT: !definition:
  480. // CHECK:STDOUT: %I.type => constants.%I.type.325e65.3
  481. // CHECK:STDOUT: %Self.2 => constants.%Self
  482. // CHECK:STDOUT: %F.type => constants.%F.type.2aef59.3
  483. // CHECK:STDOUT: %F => constants.%F.bb2dd4.3
  484. // CHECK:STDOUT: %I.assoc_type => constants.%I.assoc_type.955255.3
  485. // CHECK:STDOUT: %assoc0.loc7_26.2 => constants.%assoc0.fef501.3
  486. // CHECK:STDOUT: }
  487. // CHECK:STDOUT:
  488. // CHECK:STDOUT: specific @impl(constants.%W) {
  489. // CHECK:STDOUT: %V.loc10_14.2 => constants.%W
  490. // CHECK:STDOUT: %V.patt.loc10_14.2 => constants.%W
  491. // CHECK:STDOUT: %A.loc10_27.2 => constants.%A.13025a.3
  492. // CHECK:STDOUT: %I.type.loc10_35.2 => constants.%I.type.325e65.3
  493. // CHECK:STDOUT: %require_complete => constants.%require_complete.cfebb2.2
  494. // CHECK:STDOUT: %impl_witness => constants.%impl_witness.ab3b51.2
  495. // CHECK:STDOUT:
  496. // CHECK:STDOUT: !definition:
  497. // CHECK:STDOUT: %F.type => constants.%F.type.0fea45.2
  498. // CHECK:STDOUT: %F => constants.%F.d6ae34.2
  499. // CHECK:STDOUT: }
  500. // CHECK:STDOUT:
  501. // CHECK:STDOUT: specific @F.2(constants.%W) {
  502. // CHECK:STDOUT: %V => constants.%W
  503. // CHECK:STDOUT: %A => constants.%A.13025a.3
  504. // CHECK:STDOUT:
  505. // CHECK:STDOUT: !definition:
  506. // CHECK:STDOUT: %require_complete.loc11_22 => constants.%require_complete.4aeca8.3
  507. // CHECK:STDOUT: %require_complete.loc11_12 => constants.%require_complete.5b8aee.2
  508. // CHECK:STDOUT: %A.elem => constants.%A.elem.1ceb36.3
  509. // CHECK:STDOUT: }
  510. // CHECK:STDOUT:
  511. // CHECK:STDOUT: specific @I(@TestGeneric.%W.loc16_16.2) {}
  512. // CHECK:STDOUT:
  513. // CHECK:STDOUT: specific @impl(@TestGeneric.%W.loc16_16.2) {}
  514. // CHECK:STDOUT:
  515. // CHECK:STDOUT: specific @A(constants.%empty_struct_type) {
  516. // CHECK:STDOUT: %T.loc2_9.2 => constants.%empty_struct_type
  517. // CHECK:STDOUT: %T.patt.loc2_9.2 => constants.%empty_struct_type
  518. // CHECK:STDOUT:
  519. // CHECK:STDOUT: !definition:
  520. // CHECK:STDOUT: %require_complete => constants.%complete_type.357
  521. // CHECK:STDOUT: %A => constants.%A.235
  522. // CHECK:STDOUT: %A.elem => constants.%A.elem.2af
  523. // CHECK:STDOUT: %struct_type.n => constants.%struct_type.n.91c
  524. // CHECK:STDOUT: %complete_type.loc4_1.2 => constants.%complete_type.0a6
  525. // CHECK:STDOUT: }
  526. // CHECK:STDOUT:
  527. // CHECK:STDOUT: specific @I(constants.%empty_struct_type) {
  528. // CHECK:STDOUT: %U.loc6_13.2 => constants.%empty_struct_type
  529. // CHECK:STDOUT: %U.patt.loc6_13.2 => constants.%empty_struct_type
  530. // CHECK:STDOUT:
  531. // CHECK:STDOUT: !definition:
  532. // CHECK:STDOUT: %I.type => constants.%I.type.885
  533. // CHECK:STDOUT: %Self.2 => constants.%Self
  534. // CHECK:STDOUT: %F.type => constants.%F.type.684
  535. // CHECK:STDOUT: %F => constants.%F.a8d
  536. // CHECK:STDOUT: %I.assoc_type => constants.%I.assoc_type.67f
  537. // CHECK:STDOUT: %assoc0.loc7_26.2 => constants.%assoc0.639
  538. // CHECK:STDOUT: }
  539. // CHECK:STDOUT:
  540. // CHECK:STDOUT: specific @impl(constants.%empty_struct_type) {
  541. // CHECK:STDOUT: %V.loc10_14.2 => constants.%empty_struct_type
  542. // CHECK:STDOUT: %V.patt.loc10_14.2 => constants.%empty_struct_type
  543. // CHECK:STDOUT: %A.loc10_27.2 => constants.%A.235
  544. // CHECK:STDOUT: %I.type.loc10_35.2 => constants.%I.type.885
  545. // CHECK:STDOUT: %require_complete => constants.%complete_type.788
  546. // CHECK:STDOUT: %impl_witness => constants.%impl_witness.f35
  547. // CHECK:STDOUT:
  548. // CHECK:STDOUT: !definition:
  549. // CHECK:STDOUT: %F.type => constants.%F.type.875
  550. // CHECK:STDOUT: %F => constants.%F.158
  551. // CHECK:STDOUT: }
  552. // CHECK:STDOUT:
  553. // CHECK:STDOUT: specific @F.2(constants.%empty_struct_type) {
  554. // CHECK:STDOUT: %V => constants.%empty_struct_type
  555. // CHECK:STDOUT: %A => constants.%A.235
  556. // CHECK:STDOUT:
  557. // CHECK:STDOUT: !definition:
  558. // CHECK:STDOUT: %require_complete.loc11_22 => constants.%complete_type.357
  559. // CHECK:STDOUT: %require_complete.loc11_12 => constants.%complete_type.0a6
  560. // CHECK:STDOUT: %A.elem => constants.%A.elem.2af
  561. // CHECK:STDOUT: }
  562. // CHECK:STDOUT: