compound_member_access.carbon 155 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238
  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. // INCLUDE-FILE: toolchain/testing/min_prelude/facet_types.carbon
  6. // EXTRA-ARGS: --custom-core
  7. //
  8. // AUTOUPDATE
  9. // TIP: To test this file alone, run:
  10. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/interface/min_prelude/compound_member_access.carbon
  11. // TIP: To dump output, run:
  12. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/interface/min_prelude/compound_member_access.carbon
  13. // --- associated_constant.carbon
  14. library "[[@TEST_NAME]]";
  15. interface J {
  16. let U:! type;
  17. }
  18. // Simple member access.
  19. fn Simple1(T:! J, S:! T.U) {}
  20. // This should be equivalent to `Simple1` above, but using compound member access.
  21. fn Compound1(V:! J, W:! V.(J.U)) {}
  22. // --- non_instance.carbon
  23. library "[[@TEST_NAME]]";
  24. interface K1 {
  25. fn Q1();
  26. }
  27. // Simple member access.
  28. fn Simple2(T:! K1) {
  29. T.Q1();
  30. }
  31. // This should be equivalent to `Simple2` above, but using compound member access.
  32. fn Compound2(V:! K1) {
  33. V.(K1.Q1)();
  34. }
  35. // --- fail_caller_instance_interface_not.carbon
  36. library "[[@TEST_NAME]]";
  37. interface K2 {
  38. fn Q2();
  39. }
  40. // Simple member access allows this.
  41. fn Simple3(T:! K2, x: T) {
  42. x.Q2();
  43. }
  44. // Compound member access does not. It tries to convert `y` to `K2`, but only
  45. // its type `V` can.
  46. fn Compound3(V:! K2, y: V) {
  47. // CHECK:STDERR: fail_caller_instance_interface_not.carbon:[[@LINE+7]]:3: error: cannot implicitly convert non-type value of type `V` into type implementing `K2` [ConversionFailureNonTypeToFacet]
  48. // CHECK:STDERR: y.(K2.Q2)();
  49. // CHECK:STDERR: ^~~~~~~~~
  50. // CHECK:STDERR: fail_caller_instance_interface_not.carbon:[[@LINE+4]]:3: note: type `V` does not implement interface `Core.ImplicitAs(K2)` [MissingImplInMemberAccessNote]
  51. // CHECK:STDERR: y.(K2.Q2)();
  52. // CHECK:STDERR: ^~~~~~~~~
  53. // CHECK:STDERR:
  54. y.(K2.Q2)();
  55. }
  56. // --- instance.carbon
  57. library "[[@TEST_NAME]]";
  58. interface L1 {
  59. fn R1[self: Self]();
  60. fn S1[addr self: Self*]();
  61. }
  62. // Simple member access.
  63. fn Simple4(T:! L1, x: T) {
  64. x.R1();
  65. var xcopy: T = x;
  66. xcopy.S1();
  67. }
  68. // This should be equivalent to `Simple4` above, but using compound member access.
  69. fn Compound4(V:! L1, y: V) {
  70. y.(L1.R1)();
  71. var ycopy: V = y;
  72. ycopy.(L1.S1)();
  73. }
  74. // --- fail_interface_instance_caller_not.carbon
  75. library "[[@TEST_NAME]]";
  76. interface L2 {
  77. fn R2[self: Self]();
  78. fn S2[addr self: Self*]();
  79. }
  80. // Simple member access. Fails since calling an instance method without an object.
  81. fn Simple5(T:! L2) {
  82. // CHECK:STDERR: fail_interface_instance_caller_not.carbon:[[@LINE+7]]:3: error: missing object argument in method call [MissingObjectInMethodCall]
  83. // CHECK:STDERR: T.R2();
  84. // CHECK:STDERR: ^~~~~~
  85. // CHECK:STDERR: fail_interface_instance_caller_not.carbon:[[@LINE-9]]:3: note: calling function declared here [InCallToFunction]
  86. // CHECK:STDERR: fn R2[self: Self]();
  87. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~
  88. // CHECK:STDERR:
  89. T.R2();
  90. // CHECK:STDERR: fail_interface_instance_caller_not.carbon:[[@LINE+7]]:3: error: missing object argument in method call [MissingObjectInMethodCall]
  91. // CHECK:STDERR: T.S2();
  92. // CHECK:STDERR: ^~~~~~
  93. // CHECK:STDERR: fail_interface_instance_caller_not.carbon:[[@LINE-16]]:3: note: calling function declared here [InCallToFunction]
  94. // CHECK:STDERR: fn S2[addr self: Self*]();
  95. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~
  96. // CHECK:STDERR:
  97. T.S2();
  98. }
  99. // TODO: Expected to fail in the same way as `Simple5`.
  100. fn Compound5(V:! L2) {
  101. // CHECK:STDERR: fail_interface_instance_caller_not.carbon:[[@LINE+4]]:3: error: cannot access member of interface `L2` in type `L2` that does not implement that interface [MissingImplInMemberAccess]
  102. // CHECK:STDERR: V.(L2.R2)();
  103. // CHECK:STDERR: ^~~~~~~~~
  104. // CHECK:STDERR:
  105. V.(L2.R2)();
  106. // CHECK:STDERR: fail_interface_instance_caller_not.carbon:[[@LINE+4]]:3: error: cannot access member of interface `L2` in type `L2` that does not implement that interface [MissingImplInMemberAccess]
  107. // CHECK:STDERR: V.(L2.S2)();
  108. // CHECK:STDERR: ^~~~~~~~~
  109. // CHECK:STDERR:
  110. V.(L2.S2)();
  111. }
  112. // --- fail_combine_non_instance.carbon
  113. library "[[@TEST_NAME]]";
  114. interface A {
  115. fn G();
  116. }
  117. class C {}
  118. impl C as A {
  119. fn G() {}
  120. }
  121. // Since `A.G` is a non-instance method, compound member access may only be
  122. // used with a type, not an instance.
  123. fn Fails() {
  124. // CHECK:STDERR: fail_combine_non_instance.carbon:[[@LINE+7]]:3: error: cannot implicitly convert non-type value of type `C` into type implementing `A` [ConversionFailureNonTypeToFacet]
  125. // CHECK:STDERR: ({} as C).((A & A).G)();
  126. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~
  127. // CHECK:STDERR: fail_combine_non_instance.carbon:[[@LINE+4]]:3: note: type `C` does not implement interface `Core.ImplicitAs(A)` [MissingImplInMemberAccessNote]
  128. // CHECK:STDERR: ({} as C).((A & A).G)();
  129. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~
  130. // CHECK:STDERR:
  131. ({} as C).((A & A).G)();
  132. // CHECK:STDERR: fail_combine_non_instance.carbon:[[@LINE+7]]:3: error: cannot implicitly convert non-type value of type `C` into type implementing `A` [ConversionFailureNonTypeToFacet]
  133. // CHECK:STDERR: (({} as C) as (C as (A & A))).((A & A).G)();
  134. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  135. // CHECK:STDERR: fail_combine_non_instance.carbon:[[@LINE+4]]:3: note: type `C` does not implement interface `Core.ImplicitAs(A)` [MissingImplInMemberAccessNote]
  136. // CHECK:STDERR: (({} as C) as (C as (A & A))).((A & A).G)();
  137. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  138. // CHECK:STDERR:
  139. (({} as C) as (C as (A & A))).((A & A).G)();
  140. // CHECK:STDERR: fail_combine_non_instance.carbon:[[@LINE+7]]:3: error: cannot implicitly convert non-type value of type `C` into type implementing `A` [ConversionFailureNonTypeToFacet]
  141. // CHECK:STDERR: (({} as C) as (C as (A & A))).(A.G)();
  142. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  143. // CHECK:STDERR: fail_combine_non_instance.carbon:[[@LINE+4]]:3: note: type `C` does not implement interface `Core.ImplicitAs(A)` [MissingImplInMemberAccessNote]
  144. // CHECK:STDERR: (({} as C) as (C as (A & A))).(A.G)();
  145. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  146. // CHECK:STDERR:
  147. (({} as C) as (C as (A & A))).(A.G)();
  148. }
  149. // --- allowed_combine_non_instance.carbon
  150. library "[[@TEST_NAME]]";
  151. interface A {
  152. fn G();
  153. }
  154. class C {}
  155. impl C as A {
  156. fn G() {}
  157. }
  158. fn Works() {
  159. C.((A & A).G)();
  160. (C as (A & A)).((A & A).G)();
  161. (C as (A & A)).(A.G)();
  162. }
  163. // CHECK:STDOUT: --- associated_constant.carbon
  164. // CHECK:STDOUT:
  165. // CHECK:STDOUT: constants {
  166. // CHECK:STDOUT: %J.type: type = facet_type <@J> [concrete]
  167. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic]
  168. // CHECK:STDOUT: %J.assoc_type: type = assoc_entity_type @J [concrete]
  169. // CHECK:STDOUT: %assoc0: %J.assoc_type = assoc_entity element0, @J.%U [concrete]
  170. // CHECK:STDOUT: %T: %J.type = bind_symbolic_name T, 0 [symbolic]
  171. // CHECK:STDOUT: %pattern_type.28e: type = pattern_type %J.type [concrete]
  172. // CHECK:STDOUT: %T.as_type: type = facet_access_type %T [symbolic]
  173. // CHECK:STDOUT: %J.lookup_impl_witness.64628e.1: <witness> = lookup_impl_witness %T, @J [symbolic]
  174. // CHECK:STDOUT: %J.facet.5210a7.1: %J.type = facet_value %T.as_type, (%J.lookup_impl_witness.64628e.1) [symbolic]
  175. // CHECK:STDOUT: %impl.elem0.11fef0.1: type = impl_witness_access %J.lookup_impl_witness.64628e.1, element0 [symbolic]
  176. // CHECK:STDOUT: %S: %impl.elem0.11fef0.1 = bind_symbolic_name S, 1 [symbolic]
  177. // CHECK:STDOUT: %pattern_type.b984e7.1: type = pattern_type %impl.elem0.11fef0.1 [symbolic]
  178. // CHECK:STDOUT: %Simple1.type: type = fn_type @Simple1 [concrete]
  179. // CHECK:STDOUT: %Simple1: %Simple1.type = struct_value () [concrete]
  180. // CHECK:STDOUT: %V: %J.type = bind_symbolic_name V, 0 [symbolic]
  181. // CHECK:STDOUT: %V.as_type: type = facet_access_type %V [symbolic]
  182. // CHECK:STDOUT: %J.lookup_impl_witness.64628e.2: <witness> = lookup_impl_witness %V, @J [symbolic]
  183. // CHECK:STDOUT: %J.facet.5210a7.2: %J.type = facet_value %V.as_type, (%J.lookup_impl_witness.64628e.2) [symbolic]
  184. // CHECK:STDOUT: %impl.elem0.11fef0.2: type = impl_witness_access %J.lookup_impl_witness.64628e.2, element0 [symbolic]
  185. // CHECK:STDOUT: %W: %impl.elem0.11fef0.2 = bind_symbolic_name W, 1 [symbolic]
  186. // CHECK:STDOUT: %pattern_type.b984e7.2: type = pattern_type %impl.elem0.11fef0.2 [symbolic]
  187. // CHECK:STDOUT: %Compound1.type: type = fn_type @Compound1 [concrete]
  188. // CHECK:STDOUT: %Compound1: %Compound1.type = struct_value () [concrete]
  189. // CHECK:STDOUT: }
  190. // CHECK:STDOUT:
  191. // CHECK:STDOUT: imports {
  192. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  193. // CHECK:STDOUT: import Core//prelude
  194. // CHECK:STDOUT: }
  195. // CHECK:STDOUT: }
  196. // CHECK:STDOUT:
  197. // CHECK:STDOUT: file {
  198. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  199. // CHECK:STDOUT: .Core = imports.%Core
  200. // CHECK:STDOUT: .J = %J.decl
  201. // CHECK:STDOUT: .Simple1 = %Simple1.decl
  202. // CHECK:STDOUT: .Compound1 = %Compound1.decl
  203. // CHECK:STDOUT: }
  204. // CHECK:STDOUT: %Core.import = import Core
  205. // CHECK:STDOUT: %J.decl: type = interface_decl @J [concrete = constants.%J.type] {} {}
  206. // CHECK:STDOUT: %Simple1.decl: %Simple1.type = fn_decl @Simple1 [concrete = constants.%Simple1] {
  207. // CHECK:STDOUT: %T.patt: %pattern_type.28e = symbolic_binding_pattern T, 0
  208. // CHECK:STDOUT: %S.patt: @Simple1.%pattern_type (%pattern_type.b984e7.1) = symbolic_binding_pattern S, 1
  209. // CHECK:STDOUT: } {
  210. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  211. // CHECK:STDOUT: %T.loc8_12.1: %J.type = bind_symbolic_name T, 0 [symbolic = %T.loc8_12.2 (constants.%T)]
  212. // CHECK:STDOUT: %.loc8_24.1: type = splice_block %impl.elem0.loc8_24.1 [symbolic = %impl.elem0.loc8_24.2 (constants.%impl.elem0.11fef0.1)] {
  213. // CHECK:STDOUT: %T.ref: %J.type = name_ref T, %T.loc8_12.1 [symbolic = %T.loc8_12.2 (constants.%T)]
  214. // CHECK:STDOUT: %U.ref: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0]
  215. // CHECK:STDOUT: %T.as_type.loc8_24.1: type = facet_access_type %T.ref [symbolic = %T.as_type.loc8_24.2 (constants.%T.as_type)]
  216. // CHECK:STDOUT: %.loc8_24.2: type = converted %T.ref, %T.as_type.loc8_24.1 [symbolic = %T.as_type.loc8_24.2 (constants.%T.as_type)]
  217. // CHECK:STDOUT: %impl.elem0.loc8_24.1: type = impl_witness_access constants.%J.lookup_impl_witness.64628e.1, element0 [symbolic = %impl.elem0.loc8_24.2 (constants.%impl.elem0.11fef0.1)]
  218. // CHECK:STDOUT: }
  219. // CHECK:STDOUT: %S.loc8_19.1: @Simple1.%impl.elem0.loc8_24.2 (%impl.elem0.11fef0.1) = bind_symbolic_name S, 1 [symbolic = %S.loc8_19.2 (constants.%S)]
  220. // CHECK:STDOUT: }
  221. // CHECK:STDOUT: %Compound1.decl: %Compound1.type = fn_decl @Compound1 [concrete = constants.%Compound1] {
  222. // CHECK:STDOUT: %V.patt: %pattern_type.28e = symbolic_binding_pattern V, 0
  223. // CHECK:STDOUT: %W.patt: @Compound1.%pattern_type (%pattern_type.b984e7.2) = symbolic_binding_pattern W, 1
  224. // CHECK:STDOUT: } {
  225. // CHECK:STDOUT: %J.ref.loc11_18: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  226. // CHECK:STDOUT: %V.loc11_14.1: %J.type = bind_symbolic_name V, 0 [symbolic = %V.loc11_14.2 (constants.%V)]
  227. // CHECK:STDOUT: %.loc11: type = splice_block %impl.elem0.loc11_26.1 [symbolic = %impl.elem0.loc11_26.2 (constants.%impl.elem0.11fef0.2)] {
  228. // CHECK:STDOUT: %V.ref: %J.type = name_ref V, %V.loc11_14.1 [symbolic = %V.loc11_14.2 (constants.%V)]
  229. // CHECK:STDOUT: %J.ref.loc11_28: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  230. // CHECK:STDOUT: %U.ref: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0]
  231. // CHECK:STDOUT: %impl.elem0.loc11_26.1: type = impl_witness_access constants.%J.lookup_impl_witness.64628e.2, element0 [symbolic = %impl.elem0.loc11_26.2 (constants.%impl.elem0.11fef0.2)]
  232. // CHECK:STDOUT: }
  233. // CHECK:STDOUT: %W.loc11_21.1: @Compound1.%impl.elem0.loc11_26.2 (%impl.elem0.11fef0.2) = bind_symbolic_name W, 1 [symbolic = %W.loc11_21.2 (constants.%W)]
  234. // CHECK:STDOUT: }
  235. // CHECK:STDOUT: }
  236. // CHECK:STDOUT:
  237. // CHECK:STDOUT: interface @J {
  238. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
  239. // CHECK:STDOUT: %U: type = assoc_const_decl @U [concrete] {
  240. // CHECK:STDOUT: %assoc0: %J.assoc_type = assoc_entity element0, @J.%U [concrete = constants.%assoc0]
  241. // CHECK:STDOUT: }
  242. // CHECK:STDOUT:
  243. // CHECK:STDOUT: !members:
  244. // CHECK:STDOUT: .Self = %Self
  245. // CHECK:STDOUT: .U = @U.%assoc0
  246. // CHECK:STDOUT: witness = (%U)
  247. // CHECK:STDOUT: }
  248. // CHECK:STDOUT:
  249. // CHECK:STDOUT: generic assoc_const @U(@J.%Self: %J.type) {
  250. // CHECK:STDOUT: assoc_const U:! type;
  251. // CHECK:STDOUT: }
  252. // CHECK:STDOUT:
  253. // CHECK:STDOUT: generic fn @Simple1(%T.loc8_12.1: %J.type, %S.loc8_19.1: @Simple1.%impl.elem0.loc8_24.2 (%impl.elem0.11fef0.1)) {
  254. // CHECK:STDOUT: %T.loc8_12.2: %J.type = bind_symbolic_name T, 0 [symbolic = %T.loc8_12.2 (constants.%T)]
  255. // CHECK:STDOUT: %T.as_type.loc8_24.2: type = facet_access_type %T.loc8_12.2 [symbolic = %T.as_type.loc8_24.2 (constants.%T.as_type)]
  256. // CHECK:STDOUT: %J.lookup_impl_witness: <witness> = lookup_impl_witness %T.loc8_12.2, @J [symbolic = %J.lookup_impl_witness (constants.%J.lookup_impl_witness.64628e.1)]
  257. // CHECK:STDOUT: %impl.elem0.loc8_24.2: type = impl_witness_access %J.lookup_impl_witness, element0 [symbolic = %impl.elem0.loc8_24.2 (constants.%impl.elem0.11fef0.1)]
  258. // CHECK:STDOUT: %S.loc8_19.2: @Simple1.%impl.elem0.loc8_24.2 (%impl.elem0.11fef0.1) = bind_symbolic_name S, 1 [symbolic = %S.loc8_19.2 (constants.%S)]
  259. // CHECK:STDOUT: %pattern_type: type = pattern_type %impl.elem0.loc8_24.2 [symbolic = %pattern_type (constants.%pattern_type.b984e7.1)]
  260. // CHECK:STDOUT:
  261. // CHECK:STDOUT: !definition:
  262. // CHECK:STDOUT:
  263. // CHECK:STDOUT: fn() {
  264. // CHECK:STDOUT: !entry:
  265. // CHECK:STDOUT: return
  266. // CHECK:STDOUT: }
  267. // CHECK:STDOUT: }
  268. // CHECK:STDOUT:
  269. // CHECK:STDOUT: generic fn @Compound1(%V.loc11_14.1: %J.type, %W.loc11_21.1: @Compound1.%impl.elem0.loc11_26.2 (%impl.elem0.11fef0.2)) {
  270. // CHECK:STDOUT: %V.loc11_14.2: %J.type = bind_symbolic_name V, 0 [symbolic = %V.loc11_14.2 (constants.%V)]
  271. // CHECK:STDOUT: %J.lookup_impl_witness: <witness> = lookup_impl_witness %V.loc11_14.2, @J [symbolic = %J.lookup_impl_witness (constants.%J.lookup_impl_witness.64628e.2)]
  272. // CHECK:STDOUT: %impl.elem0.loc11_26.2: type = impl_witness_access %J.lookup_impl_witness, element0 [symbolic = %impl.elem0.loc11_26.2 (constants.%impl.elem0.11fef0.2)]
  273. // CHECK:STDOUT: %W.loc11_21.2: @Compound1.%impl.elem0.loc11_26.2 (%impl.elem0.11fef0.2) = bind_symbolic_name W, 1 [symbolic = %W.loc11_21.2 (constants.%W)]
  274. // CHECK:STDOUT: %pattern_type: type = pattern_type %impl.elem0.loc11_26.2 [symbolic = %pattern_type (constants.%pattern_type.b984e7.2)]
  275. // CHECK:STDOUT:
  276. // CHECK:STDOUT: !definition:
  277. // CHECK:STDOUT:
  278. // CHECK:STDOUT: fn() {
  279. // CHECK:STDOUT: !entry:
  280. // CHECK:STDOUT: return
  281. // CHECK:STDOUT: }
  282. // CHECK:STDOUT: }
  283. // CHECK:STDOUT:
  284. // CHECK:STDOUT: specific @U(constants.%Self) {}
  285. // CHECK:STDOUT:
  286. // CHECK:STDOUT: specific @U(constants.%J.facet.5210a7.1) {}
  287. // CHECK:STDOUT:
  288. // CHECK:STDOUT: specific @Simple1(constants.%T, constants.%S) {
  289. // CHECK:STDOUT: %T.loc8_12.2 => constants.%T
  290. // CHECK:STDOUT: %T.as_type.loc8_24.2 => constants.%T.as_type
  291. // CHECK:STDOUT: %J.lookup_impl_witness => constants.%J.lookup_impl_witness.64628e.1
  292. // CHECK:STDOUT: %impl.elem0.loc8_24.2 => constants.%impl.elem0.11fef0.1
  293. // CHECK:STDOUT: %S.loc8_19.2 => constants.%S
  294. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.b984e7.1
  295. // CHECK:STDOUT: }
  296. // CHECK:STDOUT:
  297. // CHECK:STDOUT: specific @U(constants.%J.facet.5210a7.2) {}
  298. // CHECK:STDOUT:
  299. // CHECK:STDOUT: specific @Compound1(constants.%V, constants.%W) {
  300. // CHECK:STDOUT: %V.loc11_14.2 => constants.%V
  301. // CHECK:STDOUT: %J.lookup_impl_witness => constants.%J.lookup_impl_witness.64628e.2
  302. // CHECK:STDOUT: %impl.elem0.loc11_26.2 => constants.%impl.elem0.11fef0.2
  303. // CHECK:STDOUT: %W.loc11_21.2 => constants.%W
  304. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.b984e7.2
  305. // CHECK:STDOUT: }
  306. // CHECK:STDOUT:
  307. // CHECK:STDOUT: --- non_instance.carbon
  308. // CHECK:STDOUT:
  309. // CHECK:STDOUT: constants {
  310. // CHECK:STDOUT: %K1.type: type = facet_type <@K1> [concrete]
  311. // CHECK:STDOUT: %Self: %K1.type = bind_symbolic_name Self, 0 [symbolic]
  312. // CHECK:STDOUT: %Q1.type: type = fn_type @Q1 [concrete]
  313. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  314. // CHECK:STDOUT: %Q1: %Q1.type = struct_value () [concrete]
  315. // CHECK:STDOUT: %K1.assoc_type: type = assoc_entity_type @K1 [concrete]
  316. // CHECK:STDOUT: %assoc0: %K1.assoc_type = assoc_entity element0, @K1.%Q1.decl [concrete]
  317. // CHECK:STDOUT: %T: %K1.type = bind_symbolic_name T, 0 [symbolic]
  318. // CHECK:STDOUT: %pattern_type: type = pattern_type %K1.type [concrete]
  319. // CHECK:STDOUT: %Simple2.type: type = fn_type @Simple2 [concrete]
  320. // CHECK:STDOUT: %Simple2: %Simple2.type = struct_value () [concrete]
  321. // CHECK:STDOUT: %T.as_type: type = facet_access_type %T [symbolic]
  322. // CHECK:STDOUT: %K1.lookup_impl_witness.d8ae08.1: <witness> = lookup_impl_witness %T, @K1 [symbolic]
  323. // CHECK:STDOUT: %K1.facet.9e06af.1: %K1.type = facet_value %T.as_type, (%K1.lookup_impl_witness.d8ae08.1) [symbolic]
  324. // CHECK:STDOUT: %.484362.1: type = fn_type_with_self_type %Q1.type, %K1.facet.9e06af.1 [symbolic]
  325. // CHECK:STDOUT: %impl.elem0.9661c0.1: %.484362.1 = impl_witness_access %K1.lookup_impl_witness.d8ae08.1, element0 [symbolic]
  326. // CHECK:STDOUT: %specific_impl_fn.54474d.1: <specific function> = specific_impl_function %impl.elem0.9661c0.1, @Q1(%K1.facet.9e06af.1) [symbolic]
  327. // CHECK:STDOUT: %V: %K1.type = bind_symbolic_name V, 0 [symbolic]
  328. // CHECK:STDOUT: %Compound2.type: type = fn_type @Compound2 [concrete]
  329. // CHECK:STDOUT: %Compound2: %Compound2.type = struct_value () [concrete]
  330. // CHECK:STDOUT: %V.as_type: type = facet_access_type %V [symbolic]
  331. // CHECK:STDOUT: %K1.lookup_impl_witness.d8ae08.2: <witness> = lookup_impl_witness %V, @K1 [symbolic]
  332. // CHECK:STDOUT: %K1.facet.9e06af.2: %K1.type = facet_value %V.as_type, (%K1.lookup_impl_witness.d8ae08.2) [symbolic]
  333. // CHECK:STDOUT: %.484362.2: type = fn_type_with_self_type %Q1.type, %K1.facet.9e06af.2 [symbolic]
  334. // CHECK:STDOUT: %impl.elem0.9661c0.2: %.484362.2 = impl_witness_access %K1.lookup_impl_witness.d8ae08.2, element0 [symbolic]
  335. // CHECK:STDOUT: %specific_impl_fn.54474d.2: <specific function> = specific_impl_function %impl.elem0.9661c0.2, @Q1(%K1.facet.9e06af.2) [symbolic]
  336. // CHECK:STDOUT: }
  337. // CHECK:STDOUT:
  338. // CHECK:STDOUT: imports {
  339. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  340. // CHECK:STDOUT: import Core//prelude
  341. // CHECK:STDOUT: }
  342. // CHECK:STDOUT: }
  343. // CHECK:STDOUT:
  344. // CHECK:STDOUT: file {
  345. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  346. // CHECK:STDOUT: .Core = imports.%Core
  347. // CHECK:STDOUT: .K1 = %K1.decl
  348. // CHECK:STDOUT: .Simple2 = %Simple2.decl
  349. // CHECK:STDOUT: .Compound2 = %Compound2.decl
  350. // CHECK:STDOUT: }
  351. // CHECK:STDOUT: %Core.import = import Core
  352. // CHECK:STDOUT: %K1.decl: type = interface_decl @K1 [concrete = constants.%K1.type] {} {}
  353. // CHECK:STDOUT: %Simple2.decl: %Simple2.type = fn_decl @Simple2 [concrete = constants.%Simple2] {
  354. // CHECK:STDOUT: %T.patt: %pattern_type = symbolic_binding_pattern T, 0
  355. // CHECK:STDOUT: } {
  356. // CHECK:STDOUT: %K1.ref: type = name_ref K1, file.%K1.decl [concrete = constants.%K1.type]
  357. // CHECK:STDOUT: %T.loc8_12.1: %K1.type = bind_symbolic_name T, 0 [symbolic = %T.loc8_12.2 (constants.%T)]
  358. // CHECK:STDOUT: }
  359. // CHECK:STDOUT: %Compound2.decl: %Compound2.type = fn_decl @Compound2 [concrete = constants.%Compound2] {
  360. // CHECK:STDOUT: %V.patt: %pattern_type = symbolic_binding_pattern V, 0
  361. // CHECK:STDOUT: } {
  362. // CHECK:STDOUT: %K1.ref.loc13: type = name_ref K1, file.%K1.decl [concrete = constants.%K1.type]
  363. // CHECK:STDOUT: %V.loc13_14.1: %K1.type = bind_symbolic_name V, 0 [symbolic = %V.loc13_14.2 (constants.%V)]
  364. // CHECK:STDOUT: }
  365. // CHECK:STDOUT: }
  366. // CHECK:STDOUT:
  367. // CHECK:STDOUT: interface @K1 {
  368. // CHECK:STDOUT: %Self: %K1.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
  369. // CHECK:STDOUT: %Q1.decl: %Q1.type = fn_decl @Q1 [concrete = constants.%Q1] {} {}
  370. // CHECK:STDOUT: %assoc0: %K1.assoc_type = assoc_entity element0, %Q1.decl [concrete = constants.%assoc0]
  371. // CHECK:STDOUT:
  372. // CHECK:STDOUT: !members:
  373. // CHECK:STDOUT: .Self = %Self
  374. // CHECK:STDOUT: .Q1 = %assoc0
  375. // CHECK:STDOUT: witness = (%Q1.decl)
  376. // CHECK:STDOUT: }
  377. // CHECK:STDOUT:
  378. // CHECK:STDOUT: generic fn @Q1(@K1.%Self: %K1.type) {
  379. // CHECK:STDOUT: fn();
  380. // CHECK:STDOUT: }
  381. // CHECK:STDOUT:
  382. // CHECK:STDOUT: generic fn @Simple2(%T.loc8_12.1: %K1.type) {
  383. // CHECK:STDOUT: %T.loc8_12.2: %K1.type = bind_symbolic_name T, 0 [symbolic = %T.loc8_12.2 (constants.%T)]
  384. // CHECK:STDOUT:
  385. // CHECK:STDOUT: !definition:
  386. // CHECK:STDOUT: %T.as_type.loc9_4.2: type = facet_access_type %T.loc8_12.2 [symbolic = %T.as_type.loc9_4.2 (constants.%T.as_type)]
  387. // CHECK:STDOUT: %K1.lookup_impl_witness: <witness> = lookup_impl_witness %T.loc8_12.2, @K1 [symbolic = %K1.lookup_impl_witness (constants.%K1.lookup_impl_witness.d8ae08.1)]
  388. // CHECK:STDOUT: %K1.facet: %K1.type = facet_value %T.as_type.loc9_4.2, (%K1.lookup_impl_witness) [symbolic = %K1.facet (constants.%K1.facet.9e06af.1)]
  389. // CHECK:STDOUT: %.loc9_4.2: type = fn_type_with_self_type constants.%Q1.type, %K1.facet [symbolic = %.loc9_4.2 (constants.%.484362.1)]
  390. // CHECK:STDOUT: %impl.elem0.loc9_4.2: @Simple2.%.loc9_4.2 (%.484362.1) = impl_witness_access %K1.lookup_impl_witness, element0 [symbolic = %impl.elem0.loc9_4.2 (constants.%impl.elem0.9661c0.1)]
  391. // CHECK:STDOUT: %specific_impl_fn.loc9_4.2: <specific function> = specific_impl_function %impl.elem0.loc9_4.2, @Q1(%K1.facet) [symbolic = %specific_impl_fn.loc9_4.2 (constants.%specific_impl_fn.54474d.1)]
  392. // CHECK:STDOUT:
  393. // CHECK:STDOUT: fn() {
  394. // CHECK:STDOUT: !entry:
  395. // CHECK:STDOUT: %T.ref: %K1.type = name_ref T, %T.loc8_12.1 [symbolic = %T.loc8_12.2 (constants.%T)]
  396. // CHECK:STDOUT: %Q1.ref: %K1.assoc_type = name_ref Q1, @K1.%assoc0 [concrete = constants.%assoc0]
  397. // CHECK:STDOUT: %T.as_type.loc9_4.1: type = facet_access_type %T.ref [symbolic = %T.as_type.loc9_4.2 (constants.%T.as_type)]
  398. // CHECK:STDOUT: %.loc9_4.1: type = converted %T.ref, %T.as_type.loc9_4.1 [symbolic = %T.as_type.loc9_4.2 (constants.%T.as_type)]
  399. // CHECK:STDOUT: %impl.elem0.loc9_4.1: @Simple2.%.loc9_4.2 (%.484362.1) = impl_witness_access constants.%K1.lookup_impl_witness.d8ae08.1, element0 [symbolic = %impl.elem0.loc9_4.2 (constants.%impl.elem0.9661c0.1)]
  400. // CHECK:STDOUT: %specific_impl_fn.loc9_4.1: <specific function> = specific_impl_function %impl.elem0.loc9_4.1, @Q1(constants.%K1.facet.9e06af.1) [symbolic = %specific_impl_fn.loc9_4.2 (constants.%specific_impl_fn.54474d.1)]
  401. // CHECK:STDOUT: %.loc9_8: init %empty_tuple.type = call %specific_impl_fn.loc9_4.1()
  402. // CHECK:STDOUT: return
  403. // CHECK:STDOUT: }
  404. // CHECK:STDOUT: }
  405. // CHECK:STDOUT:
  406. // CHECK:STDOUT: generic fn @Compound2(%V.loc13_14.1: %K1.type) {
  407. // CHECK:STDOUT: %V.loc13_14.2: %K1.type = bind_symbolic_name V, 0 [symbolic = %V.loc13_14.2 (constants.%V)]
  408. // CHECK:STDOUT:
  409. // CHECK:STDOUT: !definition:
  410. // CHECK:STDOUT: %K1.lookup_impl_witness: <witness> = lookup_impl_witness %V.loc13_14.2, @K1 [symbolic = %K1.lookup_impl_witness (constants.%K1.lookup_impl_witness.d8ae08.2)]
  411. // CHECK:STDOUT: %V.as_type: type = facet_access_type %V.loc13_14.2 [symbolic = %V.as_type (constants.%V.as_type)]
  412. // CHECK:STDOUT: %K1.facet: %K1.type = facet_value %V.as_type, (%K1.lookup_impl_witness) [symbolic = %K1.facet (constants.%K1.facet.9e06af.2)]
  413. // CHECK:STDOUT: %.loc14_4: type = fn_type_with_self_type constants.%Q1.type, %K1.facet [symbolic = %.loc14_4 (constants.%.484362.2)]
  414. // CHECK:STDOUT: %impl.elem0.loc14_4.2: @Compound2.%.loc14_4 (%.484362.2) = impl_witness_access %K1.lookup_impl_witness, element0 [symbolic = %impl.elem0.loc14_4.2 (constants.%impl.elem0.9661c0.2)]
  415. // CHECK:STDOUT: %specific_impl_fn.loc14_4.2: <specific function> = specific_impl_function %impl.elem0.loc14_4.2, @Q1(%K1.facet) [symbolic = %specific_impl_fn.loc14_4.2 (constants.%specific_impl_fn.54474d.2)]
  416. // CHECK:STDOUT:
  417. // CHECK:STDOUT: fn() {
  418. // CHECK:STDOUT: !entry:
  419. // CHECK:STDOUT: %V.ref: %K1.type = name_ref V, %V.loc13_14.1 [symbolic = %V.loc13_14.2 (constants.%V)]
  420. // CHECK:STDOUT: %K1.ref.loc14: type = name_ref K1, file.%K1.decl [concrete = constants.%K1.type]
  421. // CHECK:STDOUT: %Q1.ref: %K1.assoc_type = name_ref Q1, @K1.%assoc0 [concrete = constants.%assoc0]
  422. // CHECK:STDOUT: %impl.elem0.loc14_4.1: @Compound2.%.loc14_4 (%.484362.2) = impl_witness_access constants.%K1.lookup_impl_witness.d8ae08.2, element0 [symbolic = %impl.elem0.loc14_4.2 (constants.%impl.elem0.9661c0.2)]
  423. // CHECK:STDOUT: %specific_impl_fn.loc14_4.1: <specific function> = specific_impl_function %impl.elem0.loc14_4.1, @Q1(constants.%K1.facet.9e06af.2) [symbolic = %specific_impl_fn.loc14_4.2 (constants.%specific_impl_fn.54474d.2)]
  424. // CHECK:STDOUT: %.loc14_13: init %empty_tuple.type = call %specific_impl_fn.loc14_4.1()
  425. // CHECK:STDOUT: return
  426. // CHECK:STDOUT: }
  427. // CHECK:STDOUT: }
  428. // CHECK:STDOUT:
  429. // CHECK:STDOUT: specific @Q1(constants.%Self) {}
  430. // CHECK:STDOUT:
  431. // CHECK:STDOUT: specific @Simple2(constants.%T) {
  432. // CHECK:STDOUT: %T.loc8_12.2 => constants.%T
  433. // CHECK:STDOUT: }
  434. // CHECK:STDOUT:
  435. // CHECK:STDOUT: specific @Q1(constants.%K1.facet.9e06af.1) {}
  436. // CHECK:STDOUT:
  437. // CHECK:STDOUT: specific @Q1(@Simple2.%K1.facet) {}
  438. // CHECK:STDOUT:
  439. // CHECK:STDOUT: specific @Compound2(constants.%V) {
  440. // CHECK:STDOUT: %V.loc13_14.2 => constants.%V
  441. // CHECK:STDOUT: }
  442. // CHECK:STDOUT:
  443. // CHECK:STDOUT: specific @Q1(constants.%K1.facet.9e06af.2) {}
  444. // CHECK:STDOUT:
  445. // CHECK:STDOUT: specific @Q1(@Compound2.%K1.facet) {}
  446. // CHECK:STDOUT:
  447. // CHECK:STDOUT: --- fail_caller_instance_interface_not.carbon
  448. // CHECK:STDOUT:
  449. // CHECK:STDOUT: constants {
  450. // CHECK:STDOUT: %K2.type: type = facet_type <@K2> [concrete]
  451. // CHECK:STDOUT: %Self.0ce: %K2.type = bind_symbolic_name Self, 0 [symbolic]
  452. // CHECK:STDOUT: %Q2.type: type = fn_type @Q2 [concrete]
  453. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  454. // CHECK:STDOUT: %Q2: %Q2.type = struct_value () [concrete]
  455. // CHECK:STDOUT: %K2.assoc_type: type = assoc_entity_type @K2 [concrete]
  456. // CHECK:STDOUT: %assoc0.d67: %K2.assoc_type = assoc_entity element0, @K2.%Q2.decl [concrete]
  457. // CHECK:STDOUT: %T.0ce: %K2.type = bind_symbolic_name T, 0 [symbolic]
  458. // CHECK:STDOUT: %pattern_type.fda: type = pattern_type %K2.type [concrete]
  459. // CHECK:STDOUT: %T.as_type: type = facet_access_type %T.0ce [symbolic]
  460. // CHECK:STDOUT: %pattern_type.466ee6.1: type = pattern_type %T.as_type [symbolic]
  461. // CHECK:STDOUT: %Simple3.type: type = fn_type @Simple3 [concrete]
  462. // CHECK:STDOUT: %Simple3: %Simple3.type = struct_value () [concrete]
  463. // CHECK:STDOUT: %require_complete.022e81.1: <witness> = require_complete_type %T.as_type [symbolic]
  464. // CHECK:STDOUT: %K2.lookup_impl_witness: <witness> = lookup_impl_witness %T.0ce, @K2 [symbolic]
  465. // CHECK:STDOUT: %K2.facet: %K2.type = facet_value %T.as_type, (%K2.lookup_impl_witness) [symbolic]
  466. // CHECK:STDOUT: %.8de: type = fn_type_with_self_type %Q2.type, %K2.facet [symbolic]
  467. // CHECK:STDOUT: %impl.elem0: %.8de = impl_witness_access %K2.lookup_impl_witness, element0 [symbolic]
  468. // CHECK:STDOUT: %specific_impl_fn: <specific function> = specific_impl_function %impl.elem0, @Q2(%K2.facet) [symbolic]
  469. // CHECK:STDOUT: %V: %K2.type = bind_symbolic_name V, 0 [symbolic]
  470. // CHECK:STDOUT: %V.as_type: type = facet_access_type %V [symbolic]
  471. // CHECK:STDOUT: %pattern_type.466ee6.2: type = pattern_type %V.as_type [symbolic]
  472. // CHECK:STDOUT: %Compound3.type: type = fn_type @Compound3 [concrete]
  473. // CHECK:STDOUT: %Compound3: %Compound3.type = struct_value () [concrete]
  474. // CHECK:STDOUT: %require_complete.022e81.2: <witness> = require_complete_type %V.as_type [symbolic]
  475. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic]
  476. // CHECK:STDOUT: %ImplicitAs.type.d62: type = facet_type <@ImplicitAs, @ImplicitAs(%Dest)> [symbolic]
  477. // CHECK:STDOUT: %Self.519: %ImplicitAs.type.d62 = bind_symbolic_name Self, 1 [symbolic]
  478. // CHECK:STDOUT: %Convert.type.275: type = fn_type @Convert, @ImplicitAs(%Dest) [symbolic]
  479. // CHECK:STDOUT: %Convert.42e: %Convert.type.275 = struct_value () [symbolic]
  480. // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self.519 [symbolic]
  481. // CHECK:STDOUT: %pattern_type.f3e: type = pattern_type %Self.as_type [symbolic]
  482. // CHECK:STDOUT: %pattern_type.7dcd0a.1: type = pattern_type %Dest [symbolic]
  483. // CHECK:STDOUT: %ImplicitAs.assoc_type.ca0: type = assoc_entity_type @ImplicitAs, @ImplicitAs(%Dest) [symbolic]
  484. // CHECK:STDOUT: %assoc0.9f5: %ImplicitAs.assoc_type.ca0 = assoc_entity element0, imports.%Core.import_ref.1c7 [symbolic]
  485. // CHECK:STDOUT: %ImplicitAs.type.014: type = facet_type <@ImplicitAs, @ImplicitAs(%K2.type)> [concrete]
  486. // CHECK:STDOUT: %Self.5a9: %ImplicitAs.type.014 = bind_symbolic_name Self, 1 [symbolic]
  487. // CHECK:STDOUT: %Convert.type.a72: type = fn_type @Convert, @ImplicitAs(%K2.type) [concrete]
  488. // CHECK:STDOUT: %Convert.2ea: %Convert.type.a72 = struct_value () [concrete]
  489. // CHECK:STDOUT: %ImplicitAs.assoc_type.79b: type = assoc_entity_type @ImplicitAs, @ImplicitAs(%K2.type) [concrete]
  490. // CHECK:STDOUT: %assoc0.b18: %ImplicitAs.assoc_type.79b = assoc_entity element0, imports.%Core.import_ref.1c7 [concrete]
  491. // CHECK:STDOUT: %assoc0.dc0: %ImplicitAs.assoc_type.ca0 = assoc_entity element0, imports.%Core.import_ref.207 [symbolic]
  492. // CHECK:STDOUT: %BitAnd.type: type = facet_type <@BitAnd> [concrete]
  493. // CHECK:STDOUT: %T.8b3: type = bind_symbolic_name T, 0 [symbolic]
  494. // CHECK:STDOUT: %BitAnd.impl_witness_table = impl_witness_table (imports.%Core.import_ref.bd4), @impl [concrete]
  495. // CHECK:STDOUT: %BitAnd.impl_witness: <witness> = impl_witness %BitAnd.impl_witness_table, @impl(%T.8b3) [symbolic]
  496. // CHECK:STDOUT: %Op.type: type = fn_type @Op, @impl(%T.8b3) [symbolic]
  497. // CHECK:STDOUT: %Op: %Op.type = struct_value () [symbolic]
  498. // CHECK:STDOUT: %pattern_type.7dcd0a.2: type = pattern_type %T.8b3 [symbolic]
  499. // CHECK:STDOUT: %require_complete.4ae: <witness> = require_complete_type %T.8b3 [symbolic]
  500. // CHECK:STDOUT: }
  501. // CHECK:STDOUT:
  502. // CHECK:STDOUT: imports {
  503. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  504. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  505. // CHECK:STDOUT: import Core//prelude
  506. // CHECK:STDOUT: }
  507. // CHECK:STDOUT: %Core.import_ref.5ab3ec.1: type = import_ref Core//prelude, loc13_22, loaded [symbolic = @ImplicitAs.%Dest (constants.%Dest)]
  508. // CHECK:STDOUT: %Core.import_ref.ff5 = import_ref Core//prelude, inst69 [no loc], unloaded
  509. // CHECK:STDOUT: %Core.import_ref.492: @ImplicitAs.%ImplicitAs.assoc_type (%ImplicitAs.assoc_type.ca0) = import_ref Core//prelude, loc14_35, loaded [symbolic = @ImplicitAs.%assoc0 (constants.%assoc0.dc0)]
  510. // CHECK:STDOUT: %Core.Convert = import_ref Core//prelude, Convert, unloaded
  511. // CHECK:STDOUT: %Core.import_ref.5ab3ec.2: type = import_ref Core//prelude, loc13_22, loaded [symbolic = @ImplicitAs.%Dest (constants.%Dest)]
  512. // CHECK:STDOUT: %Core.import_ref.ce1: @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.d62) = import_ref Core//prelude, inst69 [no loc], loaded [symbolic = @ImplicitAs.%Self (constants.%Self.519)]
  513. // CHECK:STDOUT: %Core.import_ref.1c7: @ImplicitAs.%Convert.type (%Convert.type.275) = import_ref Core//prelude, loc14_35, loaded [symbolic = @ImplicitAs.%Convert (constants.%Convert.42e)]
  514. // CHECK:STDOUT: %Core.import_ref.ad0 = import_ref Core//prelude, inst107 [no loc], unloaded
  515. // CHECK:STDOUT: %Core.import_ref.02e = import_ref Core//prelude, loc18_41, unloaded
  516. // CHECK:STDOUT: %Core.Op = import_ref Core//prelude, Op, unloaded
  517. // CHECK:STDOUT: %Core.import_ref.287 = import_ref Core//prelude, loc21_36, unloaded
  518. // CHECK:STDOUT: %Core.import_ref.5ab3ec.3: type = import_ref Core//prelude, loc21_14, loaded [symbolic = @impl.%T (constants.%T.8b3)]
  519. // CHECK:STDOUT: %Core.import_ref.583: type = import_ref Core//prelude, loc21_24, loaded [symbolic = @impl.%T (constants.%T.8b3)]
  520. // CHECK:STDOUT: %Core.import_ref.9c1: type = import_ref Core//prelude, loc21_29, loaded [concrete = constants.%BitAnd.type]
  521. // CHECK:STDOUT: %Core.import_ref.5ab3ec.4: type = import_ref Core//prelude, loc21_14, loaded [symbolic = @impl.%T (constants.%T.8b3)]
  522. // CHECK:STDOUT: }
  523. // CHECK:STDOUT:
  524. // CHECK:STDOUT: file {
  525. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  526. // CHECK:STDOUT: .Core = imports.%Core
  527. // CHECK:STDOUT: .K2 = %K2.decl
  528. // CHECK:STDOUT: .Simple3 = %Simple3.decl
  529. // CHECK:STDOUT: .Compound3 = %Compound3.decl
  530. // CHECK:STDOUT: }
  531. // CHECK:STDOUT: %Core.import = import Core
  532. // CHECK:STDOUT: %K2.decl: type = interface_decl @K2 [concrete = constants.%K2.type] {} {}
  533. // CHECK:STDOUT: %Simple3.decl: %Simple3.type = fn_decl @Simple3 [concrete = constants.%Simple3] {
  534. // CHECK:STDOUT: %T.patt: %pattern_type.fda = symbolic_binding_pattern T, 0
  535. // CHECK:STDOUT: %x.patt: @Simple3.%pattern_type (%pattern_type.466ee6.1) = binding_pattern x
  536. // CHECK:STDOUT: %x.param_patt: @Simple3.%pattern_type (%pattern_type.466ee6.1) = value_param_pattern %x.patt, call_param0
  537. // CHECK:STDOUT: } {
  538. // CHECK:STDOUT: %K2.ref: type = name_ref K2, file.%K2.decl [concrete = constants.%K2.type]
  539. // CHECK:STDOUT: %T.loc8_12.1: %K2.type = bind_symbolic_name T, 0 [symbolic = %T.loc8_12.2 (constants.%T.0ce)]
  540. // CHECK:STDOUT: %x.param: @Simple3.%T.as_type.loc8_23.2 (%T.as_type) = value_param call_param0
  541. // CHECK:STDOUT: %.loc8_23.1: type = splice_block %.loc8_23.2 [symbolic = %T.as_type.loc8_23.2 (constants.%T.as_type)] {
  542. // CHECK:STDOUT: %T.ref: %K2.type = name_ref T, %T.loc8_12.1 [symbolic = %T.loc8_12.2 (constants.%T.0ce)]
  543. // CHECK:STDOUT: %T.as_type.loc8_23.1: type = facet_access_type %T.ref [symbolic = %T.as_type.loc8_23.2 (constants.%T.as_type)]
  544. // CHECK:STDOUT: %.loc8_23.2: type = converted %T.ref, %T.as_type.loc8_23.1 [symbolic = %T.as_type.loc8_23.2 (constants.%T.as_type)]
  545. // CHECK:STDOUT: }
  546. // CHECK:STDOUT: %x: @Simple3.%T.as_type.loc8_23.2 (%T.as_type) = bind_name x, %x.param
  547. // CHECK:STDOUT: }
  548. // CHECK:STDOUT: %Compound3.decl: %Compound3.type = fn_decl @Compound3 [concrete = constants.%Compound3] {
  549. // CHECK:STDOUT: %V.patt: %pattern_type.fda = symbolic_binding_pattern V, 0
  550. // CHECK:STDOUT: %y.patt: @Compound3.%pattern_type (%pattern_type.466ee6.2) = binding_pattern y
  551. // CHECK:STDOUT: %y.param_patt: @Compound3.%pattern_type (%pattern_type.466ee6.2) = value_param_pattern %y.patt, call_param0
  552. // CHECK:STDOUT: } {
  553. // CHECK:STDOUT: %K2.ref.loc14: type = name_ref K2, file.%K2.decl [concrete = constants.%K2.type]
  554. // CHECK:STDOUT: %V.loc14_14.1: %K2.type = bind_symbolic_name V, 0 [symbolic = %V.loc14_14.2 (constants.%V)]
  555. // CHECK:STDOUT: %y.param: @Compound3.%V.as_type.loc14_25.2 (%V.as_type) = value_param call_param0
  556. // CHECK:STDOUT: %.loc14_25.1: type = splice_block %.loc14_25.2 [symbolic = %V.as_type.loc14_25.2 (constants.%V.as_type)] {
  557. // CHECK:STDOUT: %V.ref: %K2.type = name_ref V, %V.loc14_14.1 [symbolic = %V.loc14_14.2 (constants.%V)]
  558. // CHECK:STDOUT: %V.as_type.loc14_25.1: type = facet_access_type %V.ref [symbolic = %V.as_type.loc14_25.2 (constants.%V.as_type)]
  559. // CHECK:STDOUT: %.loc14_25.2: type = converted %V.ref, %V.as_type.loc14_25.1 [symbolic = %V.as_type.loc14_25.2 (constants.%V.as_type)]
  560. // CHECK:STDOUT: }
  561. // CHECK:STDOUT: %y: @Compound3.%V.as_type.loc14_25.2 (%V.as_type) = bind_name y, %y.param
  562. // CHECK:STDOUT: }
  563. // CHECK:STDOUT: }
  564. // CHECK:STDOUT:
  565. // CHECK:STDOUT: interface @K2 {
  566. // CHECK:STDOUT: %Self: %K2.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.0ce]
  567. // CHECK:STDOUT: %Q2.decl: %Q2.type = fn_decl @Q2 [concrete = constants.%Q2] {} {}
  568. // CHECK:STDOUT: %assoc0: %K2.assoc_type = assoc_entity element0, %Q2.decl [concrete = constants.%assoc0.d67]
  569. // CHECK:STDOUT:
  570. // CHECK:STDOUT: !members:
  571. // CHECK:STDOUT: .Self = %Self
  572. // CHECK:STDOUT: .Q2 = %assoc0
  573. // CHECK:STDOUT: witness = (%Q2.decl)
  574. // CHECK:STDOUT: }
  575. // CHECK:STDOUT:
  576. // CHECK:STDOUT: generic interface @ImplicitAs(imports.%Core.import_ref.5ab3ec.1: type) [from "include_files/facet_types.carbon"] {
  577. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic = %Dest (constants.%Dest)]
  578. // CHECK:STDOUT:
  579. // CHECK:STDOUT: !definition:
  580. // CHECK:STDOUT: %ImplicitAs.type: type = facet_type <@ImplicitAs, @ImplicitAs(%Dest)> [symbolic = %ImplicitAs.type (constants.%ImplicitAs.type.d62)]
  581. // CHECK:STDOUT: %Self: @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.d62) = bind_symbolic_name Self, 1 [symbolic = %Self (constants.%Self.519)]
  582. // CHECK:STDOUT: %Convert.type: type = fn_type @Convert, @ImplicitAs(%Dest) [symbolic = %Convert.type (constants.%Convert.type.275)]
  583. // CHECK:STDOUT: %Convert: @ImplicitAs.%Convert.type (%Convert.type.275) = struct_value () [symbolic = %Convert (constants.%Convert.42e)]
  584. // CHECK:STDOUT: %ImplicitAs.assoc_type: type = assoc_entity_type @ImplicitAs, @ImplicitAs(%Dest) [symbolic = %ImplicitAs.assoc_type (constants.%ImplicitAs.assoc_type.ca0)]
  585. // CHECK:STDOUT: %assoc0: @ImplicitAs.%ImplicitAs.assoc_type (%ImplicitAs.assoc_type.ca0) = assoc_entity element0, imports.%Core.import_ref.1c7 [symbolic = %assoc0 (constants.%assoc0.9f5)]
  586. // CHECK:STDOUT:
  587. // CHECK:STDOUT: interface {
  588. // CHECK:STDOUT: !members:
  589. // CHECK:STDOUT: .Self = imports.%Core.import_ref.ff5
  590. // CHECK:STDOUT: .Convert = imports.%Core.import_ref.492
  591. // CHECK:STDOUT: witness = (imports.%Core.Convert)
  592. // CHECK:STDOUT: }
  593. // CHECK:STDOUT: }
  594. // CHECK:STDOUT:
  595. // CHECK:STDOUT: interface @BitAnd [from "include_files/facet_types.carbon"] {
  596. // CHECK:STDOUT: !members:
  597. // CHECK:STDOUT: .Self = imports.%Core.import_ref.ad0
  598. // CHECK:STDOUT: .Op = imports.%Core.import_ref.02e
  599. // CHECK:STDOUT: witness = (imports.%Core.Op)
  600. // CHECK:STDOUT: }
  601. // CHECK:STDOUT:
  602. // CHECK:STDOUT: generic impl @impl(imports.%Core.import_ref.5ab3ec.3: type) [from "include_files/facet_types.carbon"] {
  603. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic = %T (constants.%T.8b3)]
  604. // CHECK:STDOUT: %BitAnd.impl_witness: <witness> = impl_witness constants.%BitAnd.impl_witness_table, @impl(%T) [symbolic = %BitAnd.impl_witness (constants.%BitAnd.impl_witness)]
  605. // CHECK:STDOUT:
  606. // CHECK:STDOUT: !definition:
  607. // CHECK:STDOUT: %Op.type: type = fn_type @Op, @impl(%T) [symbolic = %Op.type (constants.%Op.type)]
  608. // CHECK:STDOUT: %Op: @impl.%Op.type (%Op.type) = struct_value () [symbolic = %Op (constants.%Op)]
  609. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type %T [symbolic = %require_complete (constants.%require_complete.4ae)]
  610. // CHECK:STDOUT:
  611. // CHECK:STDOUT: impl: imports.%Core.import_ref.583 as imports.%Core.import_ref.9c1 {
  612. // CHECK:STDOUT: !members:
  613. // CHECK:STDOUT: witness = imports.%Core.import_ref.287
  614. // CHECK:STDOUT: }
  615. // CHECK:STDOUT: }
  616. // CHECK:STDOUT:
  617. // CHECK:STDOUT: generic fn @Q2(@K2.%Self: %K2.type) {
  618. // CHECK:STDOUT: fn();
  619. // CHECK:STDOUT: }
  620. // CHECK:STDOUT:
  621. // CHECK:STDOUT: generic fn @Simple3(%T.loc8_12.1: %K2.type) {
  622. // CHECK:STDOUT: %T.loc8_12.2: %K2.type = bind_symbolic_name T, 0 [symbolic = %T.loc8_12.2 (constants.%T.0ce)]
  623. // CHECK:STDOUT: %T.as_type.loc8_23.2: type = facet_access_type %T.loc8_12.2 [symbolic = %T.as_type.loc8_23.2 (constants.%T.as_type)]
  624. // CHECK:STDOUT: %pattern_type: type = pattern_type %T.as_type.loc8_23.2 [symbolic = %pattern_type (constants.%pattern_type.466ee6.1)]
  625. // CHECK:STDOUT:
  626. // CHECK:STDOUT: !definition:
  627. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type %T.as_type.loc8_23.2 [symbolic = %require_complete (constants.%require_complete.022e81.1)]
  628. // CHECK:STDOUT: %K2.lookup_impl_witness: <witness> = lookup_impl_witness %T.loc8_12.2, @K2 [symbolic = %K2.lookup_impl_witness (constants.%K2.lookup_impl_witness)]
  629. // CHECK:STDOUT: %K2.facet: %K2.type = facet_value %T.as_type.loc8_23.2, (%K2.lookup_impl_witness) [symbolic = %K2.facet (constants.%K2.facet)]
  630. // CHECK:STDOUT: %.loc9_4.2: type = fn_type_with_self_type constants.%Q2.type, %K2.facet [symbolic = %.loc9_4.2 (constants.%.8de)]
  631. // CHECK:STDOUT: %impl.elem0.loc9_4.2: @Simple3.%.loc9_4.2 (%.8de) = impl_witness_access %K2.lookup_impl_witness, element0 [symbolic = %impl.elem0.loc9_4.2 (constants.%impl.elem0)]
  632. // CHECK:STDOUT: %specific_impl_fn.loc9_4.2: <specific function> = specific_impl_function %impl.elem0.loc9_4.2, @Q2(%K2.facet) [symbolic = %specific_impl_fn.loc9_4.2 (constants.%specific_impl_fn)]
  633. // CHECK:STDOUT:
  634. // CHECK:STDOUT: fn(%x.param: @Simple3.%T.as_type.loc8_23.2 (%T.as_type)) {
  635. // CHECK:STDOUT: !entry:
  636. // CHECK:STDOUT: %x.ref: @Simple3.%T.as_type.loc8_23.2 (%T.as_type) = name_ref x, %x
  637. // CHECK:STDOUT: %Q2.ref: %K2.assoc_type = name_ref Q2, @K2.%assoc0 [concrete = constants.%assoc0.d67]
  638. // CHECK:STDOUT: %T.as_type.loc9: type = facet_access_type constants.%T.0ce [symbolic = %T.as_type.loc8_23.2 (constants.%T.as_type)]
  639. // CHECK:STDOUT: %.loc9_4.1: type = converted constants.%T.0ce, %T.as_type.loc9 [symbolic = %T.as_type.loc8_23.2 (constants.%T.as_type)]
  640. // CHECK:STDOUT: %impl.elem0.loc9_4.1: @Simple3.%.loc9_4.2 (%.8de) = impl_witness_access constants.%K2.lookup_impl_witness, element0 [symbolic = %impl.elem0.loc9_4.2 (constants.%impl.elem0)]
  641. // CHECK:STDOUT: %specific_impl_fn.loc9_4.1: <specific function> = specific_impl_function %impl.elem0.loc9_4.1, @Q2(constants.%K2.facet) [symbolic = %specific_impl_fn.loc9_4.2 (constants.%specific_impl_fn)]
  642. // CHECK:STDOUT: %.loc9_8: init %empty_tuple.type = call %specific_impl_fn.loc9_4.1()
  643. // CHECK:STDOUT: return
  644. // CHECK:STDOUT: }
  645. // CHECK:STDOUT: }
  646. // CHECK:STDOUT:
  647. // CHECK:STDOUT: generic fn @Compound3(%V.loc14_14.1: %K2.type) {
  648. // CHECK:STDOUT: %V.loc14_14.2: %K2.type = bind_symbolic_name V, 0 [symbolic = %V.loc14_14.2 (constants.%V)]
  649. // CHECK:STDOUT: %V.as_type.loc14_25.2: type = facet_access_type %V.loc14_14.2 [symbolic = %V.as_type.loc14_25.2 (constants.%V.as_type)]
  650. // CHECK:STDOUT: %pattern_type: type = pattern_type %V.as_type.loc14_25.2 [symbolic = %pattern_type (constants.%pattern_type.466ee6.2)]
  651. // CHECK:STDOUT:
  652. // CHECK:STDOUT: !definition:
  653. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type %V.as_type.loc14_25.2 [symbolic = %require_complete (constants.%require_complete.022e81.2)]
  654. // CHECK:STDOUT:
  655. // CHECK:STDOUT: fn(%y.param: @Compound3.%V.as_type.loc14_25.2 (%V.as_type)) {
  656. // CHECK:STDOUT: !entry:
  657. // CHECK:STDOUT: %y.ref: @Compound3.%V.as_type.loc14_25.2 (%V.as_type) = name_ref y, %y
  658. // CHECK:STDOUT: %K2.ref.loc22: type = name_ref K2, file.%K2.decl [concrete = constants.%K2.type]
  659. // CHECK:STDOUT: %Q2.ref: %K2.assoc_type = name_ref Q2, @K2.%assoc0 [concrete = constants.%assoc0.d67]
  660. // CHECK:STDOUT: %.loc22: %K2.type = converted %y.ref, <error> [concrete = <error>]
  661. // CHECK:STDOUT: return
  662. // CHECK:STDOUT: }
  663. // CHECK:STDOUT: }
  664. // CHECK:STDOUT:
  665. // CHECK:STDOUT: generic fn @Convert(imports.%Core.import_ref.5ab3ec.2: type, imports.%Core.import_ref.ce1: @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.d62)) [from "include_files/facet_types.carbon"] {
  666. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic = %Dest (constants.%Dest)]
  667. // CHECK:STDOUT: %ImplicitAs.type: type = facet_type <@ImplicitAs, @ImplicitAs(%Dest)> [symbolic = %ImplicitAs.type (constants.%ImplicitAs.type.d62)]
  668. // CHECK:STDOUT: %Self: @Convert.%ImplicitAs.type (%ImplicitAs.type.d62) = bind_symbolic_name Self, 1 [symbolic = %Self (constants.%Self.519)]
  669. // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self [symbolic = %Self.as_type (constants.%Self.as_type)]
  670. // CHECK:STDOUT: %pattern_type.1: type = pattern_type %Self.as_type [symbolic = %pattern_type.1 (constants.%pattern_type.f3e)]
  671. // CHECK:STDOUT: %pattern_type.2: type = pattern_type %Dest [symbolic = %pattern_type.2 (constants.%pattern_type.7dcd0a.1)]
  672. // CHECK:STDOUT:
  673. // CHECK:STDOUT: fn;
  674. // CHECK:STDOUT: }
  675. // CHECK:STDOUT:
  676. // CHECK:STDOUT: generic fn @Op(imports.%Core.import_ref.5ab3ec.4: type) [from "include_files/facet_types.carbon"] {
  677. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic = %T (constants.%T.8b3)]
  678. // CHECK:STDOUT: %pattern_type: type = pattern_type %T [symbolic = %pattern_type (constants.%pattern_type.7dcd0a.2)]
  679. // CHECK:STDOUT:
  680. // CHECK:STDOUT: !definition:
  681. // CHECK:STDOUT:
  682. // CHECK:STDOUT: fn = "type.and";
  683. // CHECK:STDOUT: }
  684. // CHECK:STDOUT:
  685. // CHECK:STDOUT: specific @Q2(constants.%Self.0ce) {}
  686. // CHECK:STDOUT:
  687. // CHECK:STDOUT: specific @Simple3(constants.%T.0ce) {
  688. // CHECK:STDOUT: %T.loc8_12.2 => constants.%T.0ce
  689. // CHECK:STDOUT: %T.as_type.loc8_23.2 => constants.%T.as_type
  690. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.466ee6.1
  691. // CHECK:STDOUT: }
  692. // CHECK:STDOUT:
  693. // CHECK:STDOUT: specific @Q2(constants.%K2.facet) {}
  694. // CHECK:STDOUT:
  695. // CHECK:STDOUT: specific @Q2(@Simple3.%K2.facet) {}
  696. // CHECK:STDOUT:
  697. // CHECK:STDOUT: specific @Compound3(constants.%V) {
  698. // CHECK:STDOUT: %V.loc14_14.2 => constants.%V
  699. // CHECK:STDOUT: %V.as_type.loc14_25.2 => constants.%V.as_type
  700. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.466ee6.2
  701. // CHECK:STDOUT: }
  702. // CHECK:STDOUT:
  703. // CHECK:STDOUT: specific @ImplicitAs(constants.%Dest) {
  704. // CHECK:STDOUT: %Dest => constants.%Dest
  705. // CHECK:STDOUT: }
  706. // CHECK:STDOUT:
  707. // CHECK:STDOUT: specific @ImplicitAs(%Dest) {}
  708. // CHECK:STDOUT:
  709. // CHECK:STDOUT: specific @ImplicitAs(@Convert.%Dest) {}
  710. // CHECK:STDOUT:
  711. // CHECK:STDOUT: specific @Convert(constants.%Dest, constants.%Self.519) {
  712. // CHECK:STDOUT: %Dest => constants.%Dest
  713. // CHECK:STDOUT: %ImplicitAs.type => constants.%ImplicitAs.type.d62
  714. // CHECK:STDOUT: %Self => constants.%Self.519
  715. // CHECK:STDOUT: %Self.as_type => constants.%Self.as_type
  716. // CHECK:STDOUT: %pattern_type.1 => constants.%pattern_type.f3e
  717. // CHECK:STDOUT: %pattern_type.2 => constants.%pattern_type.7dcd0a.1
  718. // CHECK:STDOUT: }
  719. // CHECK:STDOUT:
  720. // CHECK:STDOUT: specific @ImplicitAs(constants.%K2.type) {
  721. // CHECK:STDOUT: %Dest => constants.%K2.type
  722. // CHECK:STDOUT:
  723. // CHECK:STDOUT: !definition:
  724. // CHECK:STDOUT: %ImplicitAs.type => constants.%ImplicitAs.type.014
  725. // CHECK:STDOUT: %Self => constants.%Self.5a9
  726. // CHECK:STDOUT: %Convert.type => constants.%Convert.type.a72
  727. // CHECK:STDOUT: %Convert => constants.%Convert.2ea
  728. // CHECK:STDOUT: %ImplicitAs.assoc_type => constants.%ImplicitAs.assoc_type.79b
  729. // CHECK:STDOUT: %assoc0 => constants.%assoc0.b18
  730. // CHECK:STDOUT: }
  731. // CHECK:STDOUT:
  732. // CHECK:STDOUT: specific @impl(constants.%T.8b3) {
  733. // CHECK:STDOUT: %T => constants.%T.8b3
  734. // CHECK:STDOUT: %BitAnd.impl_witness => constants.%BitAnd.impl_witness
  735. // CHECK:STDOUT: }
  736. // CHECK:STDOUT:
  737. // CHECK:STDOUT: specific @impl(%T) {}
  738. // CHECK:STDOUT:
  739. // CHECK:STDOUT: specific @Op(constants.%T.8b3) {
  740. // CHECK:STDOUT: %T => constants.%T.8b3
  741. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.7dcd0a.2
  742. // CHECK:STDOUT: }
  743. // CHECK:STDOUT:
  744. // CHECK:STDOUT: --- instance.carbon
  745. // CHECK:STDOUT:
  746. // CHECK:STDOUT: constants {
  747. // CHECK:STDOUT: %L1.type: type = facet_type <@L1> [concrete]
  748. // CHECK:STDOUT: %Self: %L1.type = bind_symbolic_name Self, 0 [symbolic]
  749. // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self [symbolic]
  750. // CHECK:STDOUT: %pattern_type.ad3e89.1: type = pattern_type %Self.as_type [symbolic]
  751. // CHECK:STDOUT: %R1.type: type = fn_type @R1 [concrete]
  752. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  753. // CHECK:STDOUT: %R1: %R1.type = struct_value () [concrete]
  754. // CHECK:STDOUT: %L1.assoc_type: type = assoc_entity_type @L1 [concrete]
  755. // CHECK:STDOUT: %assoc0: %L1.assoc_type = assoc_entity element0, @L1.%R1.decl [concrete]
  756. // CHECK:STDOUT: %ptr.72f01d.1: type = ptr_type %Self.as_type [symbolic]
  757. // CHECK:STDOUT: %pattern_type.53384b.1: type = pattern_type %ptr.72f01d.1 [symbolic]
  758. // CHECK:STDOUT: %pattern_type.f6d: type = pattern_type auto [concrete]
  759. // CHECK:STDOUT: %S1.type: type = fn_type @S1 [concrete]
  760. // CHECK:STDOUT: %S1: %S1.type = struct_value () [concrete]
  761. // CHECK:STDOUT: %assoc1: %L1.assoc_type = assoc_entity element1, @L1.%S1.decl [concrete]
  762. // CHECK:STDOUT: %T: %L1.type = bind_symbolic_name T, 0 [symbolic]
  763. // CHECK:STDOUT: %pattern_type.5da: type = pattern_type %L1.type [concrete]
  764. // CHECK:STDOUT: %T.as_type: type = facet_access_type %T [symbolic]
  765. // CHECK:STDOUT: %pattern_type.ad3e89.2: type = pattern_type %T.as_type [symbolic]
  766. // CHECK:STDOUT: %Simple4.type: type = fn_type @Simple4 [concrete]
  767. // CHECK:STDOUT: %Simple4: %Simple4.type = struct_value () [concrete]
  768. // CHECK:STDOUT: %require_complete.97cd40.1: <witness> = require_complete_type %T.as_type [symbolic]
  769. // CHECK:STDOUT: %L1.lookup_impl_witness.0a136b.1: <witness> = lookup_impl_witness %T, @L1 [symbolic]
  770. // CHECK:STDOUT: %L1.facet.ed78cc.1: %L1.type = facet_value %T.as_type, (%L1.lookup_impl_witness.0a136b.1) [symbolic]
  771. // CHECK:STDOUT: %.3b7304.1: type = fn_type_with_self_type %R1.type, %L1.facet.ed78cc.1 [symbolic]
  772. // CHECK:STDOUT: %impl.elem0.a7f881.1: %.3b7304.1 = impl_witness_access %L1.lookup_impl_witness.0a136b.1, element0 [symbolic]
  773. // CHECK:STDOUT: %specific_impl_fn.f11365.1: <specific function> = specific_impl_function %impl.elem0.a7f881.1, @R1(%L1.facet.ed78cc.1) [symbolic]
  774. // CHECK:STDOUT: %.e9a411.1: type = fn_type_with_self_type %S1.type, %L1.facet.ed78cc.1 [symbolic]
  775. // CHECK:STDOUT: %impl.elem1.a8c6e3.1: %.e9a411.1 = impl_witness_access %L1.lookup_impl_witness.0a136b.1, element1 [symbolic]
  776. // CHECK:STDOUT: %ptr.72f01d.2: type = ptr_type %T.as_type [symbolic]
  777. // CHECK:STDOUT: %pattern_type.53384b.2: type = pattern_type %ptr.72f01d.2 [symbolic]
  778. // CHECK:STDOUT: %specific_impl_fn.bbb82e.1: <specific function> = specific_impl_function %impl.elem1.a8c6e3.1, @S1(%L1.facet.ed78cc.1) [symbolic]
  779. // CHECK:STDOUT: %require_complete.9326df.1: <witness> = require_complete_type %ptr.72f01d.2 [symbolic]
  780. // CHECK:STDOUT: %V: %L1.type = bind_symbolic_name V, 0 [symbolic]
  781. // CHECK:STDOUT: %V.as_type: type = facet_access_type %V [symbolic]
  782. // CHECK:STDOUT: %pattern_type.ad3e89.3: type = pattern_type %V.as_type [symbolic]
  783. // CHECK:STDOUT: %Compound4.type: type = fn_type @Compound4 [concrete]
  784. // CHECK:STDOUT: %Compound4: %Compound4.type = struct_value () [concrete]
  785. // CHECK:STDOUT: %require_complete.97cd40.2: <witness> = require_complete_type %V.as_type [symbolic]
  786. // CHECK:STDOUT: %L1.lookup_impl_witness.0a136b.2: <witness> = lookup_impl_witness %V, @L1 [symbolic]
  787. // CHECK:STDOUT: %L1.facet.ed78cc.2: %L1.type = facet_value %V.as_type, (%L1.lookup_impl_witness.0a136b.2) [symbolic]
  788. // CHECK:STDOUT: %.3b7304.2: type = fn_type_with_self_type %R1.type, %L1.facet.ed78cc.2 [symbolic]
  789. // CHECK:STDOUT: %impl.elem0.a7f881.2: %.3b7304.2 = impl_witness_access %L1.lookup_impl_witness.0a136b.2, element0 [symbolic]
  790. // CHECK:STDOUT: %specific_impl_fn.f11365.2: <specific function> = specific_impl_function %impl.elem0.a7f881.2, @R1(%L1.facet.ed78cc.2) [symbolic]
  791. // CHECK:STDOUT: %.e9a411.2: type = fn_type_with_self_type %S1.type, %L1.facet.ed78cc.2 [symbolic]
  792. // CHECK:STDOUT: %impl.elem1.a8c6e3.2: %.e9a411.2 = impl_witness_access %L1.lookup_impl_witness.0a136b.2, element1 [symbolic]
  793. // CHECK:STDOUT: %ptr.72f01d.3: type = ptr_type %V.as_type [symbolic]
  794. // CHECK:STDOUT: %pattern_type.53384b.3: type = pattern_type %ptr.72f01d.3 [symbolic]
  795. // CHECK:STDOUT: %specific_impl_fn.bbb82e.2: <specific function> = specific_impl_function %impl.elem1.a8c6e3.2, @S1(%L1.facet.ed78cc.2) [symbolic]
  796. // CHECK:STDOUT: %require_complete.9326df.2: <witness> = require_complete_type %ptr.72f01d.3 [symbolic]
  797. // CHECK:STDOUT: }
  798. // CHECK:STDOUT:
  799. // CHECK:STDOUT: imports {
  800. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  801. // CHECK:STDOUT: import Core//prelude
  802. // CHECK:STDOUT: }
  803. // CHECK:STDOUT: }
  804. // CHECK:STDOUT:
  805. // CHECK:STDOUT: file {
  806. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  807. // CHECK:STDOUT: .Core = imports.%Core
  808. // CHECK:STDOUT: .L1 = %L1.decl
  809. // CHECK:STDOUT: .Simple4 = %Simple4.decl
  810. // CHECK:STDOUT: .Compound4 = %Compound4.decl
  811. // CHECK:STDOUT: }
  812. // CHECK:STDOUT: %Core.import = import Core
  813. // CHECK:STDOUT: %L1.decl: type = interface_decl @L1 [concrete = constants.%L1.type] {} {}
  814. // CHECK:STDOUT: %Simple4.decl: %Simple4.type = fn_decl @Simple4 [concrete = constants.%Simple4] {
  815. // CHECK:STDOUT: %T.patt: %pattern_type.5da = symbolic_binding_pattern T, 0
  816. // CHECK:STDOUT: %x.patt: @Simple4.%pattern_type (%pattern_type.ad3e89.2) = binding_pattern x
  817. // CHECK:STDOUT: %x.param_patt: @Simple4.%pattern_type (%pattern_type.ad3e89.2) = value_param_pattern %x.patt, call_param0
  818. // CHECK:STDOUT: } {
  819. // CHECK:STDOUT: %L1.ref: type = name_ref L1, file.%L1.decl [concrete = constants.%L1.type]
  820. // CHECK:STDOUT: %T.loc9_12.1: %L1.type = bind_symbolic_name T, 0 [symbolic = %T.loc9_12.2 (constants.%T)]
  821. // CHECK:STDOUT: %x.param: @Simple4.%T.as_type.loc9_23.2 (%T.as_type) = value_param call_param0
  822. // CHECK:STDOUT: %.loc9_23.1: type = splice_block %.loc9_23.2 [symbolic = %T.as_type.loc9_23.2 (constants.%T.as_type)] {
  823. // CHECK:STDOUT: %T.ref.loc9: %L1.type = name_ref T, %T.loc9_12.1 [symbolic = %T.loc9_12.2 (constants.%T)]
  824. // CHECK:STDOUT: %T.as_type.loc9_23.1: type = facet_access_type %T.ref.loc9 [symbolic = %T.as_type.loc9_23.2 (constants.%T.as_type)]
  825. // CHECK:STDOUT: %.loc9_23.2: type = converted %T.ref.loc9, %T.as_type.loc9_23.1 [symbolic = %T.as_type.loc9_23.2 (constants.%T.as_type)]
  826. // CHECK:STDOUT: }
  827. // CHECK:STDOUT: %x: @Simple4.%T.as_type.loc9_23.2 (%T.as_type) = bind_name x, %x.param
  828. // CHECK:STDOUT: }
  829. // CHECK:STDOUT: %Compound4.decl: %Compound4.type = fn_decl @Compound4 [concrete = constants.%Compound4] {
  830. // CHECK:STDOUT: %V.patt: %pattern_type.5da = symbolic_binding_pattern V, 0
  831. // CHECK:STDOUT: %y.patt: @Compound4.%pattern_type (%pattern_type.ad3e89.3) = binding_pattern y
  832. // CHECK:STDOUT: %y.param_patt: @Compound4.%pattern_type (%pattern_type.ad3e89.3) = value_param_pattern %y.patt, call_param0
  833. // CHECK:STDOUT: } {
  834. // CHECK:STDOUT: %L1.ref.loc16: type = name_ref L1, file.%L1.decl [concrete = constants.%L1.type]
  835. // CHECK:STDOUT: %V.loc16_14.1: %L1.type = bind_symbolic_name V, 0 [symbolic = %V.loc16_14.2 (constants.%V)]
  836. // CHECK:STDOUT: %y.param: @Compound4.%V.as_type.loc16_25.2 (%V.as_type) = value_param call_param0
  837. // CHECK:STDOUT: %.loc16_25.1: type = splice_block %.loc16_25.2 [symbolic = %V.as_type.loc16_25.2 (constants.%V.as_type)] {
  838. // CHECK:STDOUT: %V.ref.loc16: %L1.type = name_ref V, %V.loc16_14.1 [symbolic = %V.loc16_14.2 (constants.%V)]
  839. // CHECK:STDOUT: %V.as_type.loc16_25.1: type = facet_access_type %V.ref.loc16 [symbolic = %V.as_type.loc16_25.2 (constants.%V.as_type)]
  840. // CHECK:STDOUT: %.loc16_25.2: type = converted %V.ref.loc16, %V.as_type.loc16_25.1 [symbolic = %V.as_type.loc16_25.2 (constants.%V.as_type)]
  841. // CHECK:STDOUT: }
  842. // CHECK:STDOUT: %y: @Compound4.%V.as_type.loc16_25.2 (%V.as_type) = bind_name y, %y.param
  843. // CHECK:STDOUT: }
  844. // CHECK:STDOUT: }
  845. // CHECK:STDOUT:
  846. // CHECK:STDOUT: interface @L1 {
  847. // CHECK:STDOUT: %Self: %L1.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
  848. // CHECK:STDOUT: %R1.decl: %R1.type = fn_decl @R1 [concrete = constants.%R1] {
  849. // CHECK:STDOUT: %self.patt: @R1.%pattern_type (%pattern_type.ad3e89.1) = binding_pattern self
  850. // CHECK:STDOUT: %self.param_patt: @R1.%pattern_type (%pattern_type.ad3e89.1) = value_param_pattern %self.patt, call_param0
  851. // CHECK:STDOUT: } {
  852. // CHECK:STDOUT: %self.param: @R1.%Self.as_type.loc4_15.1 (%Self.as_type) = value_param call_param0
  853. // CHECK:STDOUT: %.loc4_15.1: type = splice_block %.loc4_15.2 [symbolic = %Self.as_type.loc4_15.1 (constants.%Self.as_type)] {
  854. // CHECK:STDOUT: %Self.ref: %L1.type = name_ref Self, @L1.%Self [symbolic = %Self (constants.%Self)]
  855. // CHECK:STDOUT: %Self.as_type.loc4_15.2: type = facet_access_type %Self.ref [symbolic = %Self.as_type.loc4_15.1 (constants.%Self.as_type)]
  856. // CHECK:STDOUT: %.loc4_15.2: type = converted %Self.ref, %Self.as_type.loc4_15.2 [symbolic = %Self.as_type.loc4_15.1 (constants.%Self.as_type)]
  857. // CHECK:STDOUT: }
  858. // CHECK:STDOUT: %self: @R1.%Self.as_type.loc4_15.1 (%Self.as_type) = bind_name self, %self.param
  859. // CHECK:STDOUT: }
  860. // CHECK:STDOUT: %assoc0: %L1.assoc_type = assoc_entity element0, %R1.decl [concrete = constants.%assoc0]
  861. // CHECK:STDOUT: %S1.decl: %S1.type = fn_decl @S1 [concrete = constants.%S1] {
  862. // CHECK:STDOUT: %self.patt: @S1.%pattern_type (%pattern_type.53384b.1) = binding_pattern self
  863. // CHECK:STDOUT: %self.param_patt: @S1.%pattern_type (%pattern_type.53384b.1) = value_param_pattern %self.patt, call_param0
  864. // CHECK:STDOUT: %.loc5_9: %pattern_type.f6d = addr_pattern %self.param_patt
  865. // CHECK:STDOUT: } {
  866. // CHECK:STDOUT: %self.param: @S1.%ptr.loc5_24.1 (%ptr.72f01d.1) = value_param call_param0
  867. // CHECK:STDOUT: %.loc5_24.1: type = splice_block %ptr.loc5_24.2 [symbolic = %ptr.loc5_24.1 (constants.%ptr.72f01d.1)] {
  868. // CHECK:STDOUT: %Self.ref: %L1.type = name_ref Self, @L1.%Self [symbolic = %Self (constants.%Self)]
  869. // CHECK:STDOUT: %Self.as_type.loc5_24.2: type = facet_access_type %Self.ref [symbolic = %Self.as_type.loc5_24.1 (constants.%Self.as_type)]
  870. // CHECK:STDOUT: %.loc5_24.2: type = converted %Self.ref, %Self.as_type.loc5_24.2 [symbolic = %Self.as_type.loc5_24.1 (constants.%Self.as_type)]
  871. // CHECK:STDOUT: %ptr.loc5_24.2: type = ptr_type %.loc5_24.2 [symbolic = %ptr.loc5_24.1 (constants.%ptr.72f01d.1)]
  872. // CHECK:STDOUT: }
  873. // CHECK:STDOUT: %self: @S1.%ptr.loc5_24.1 (%ptr.72f01d.1) = bind_name self, %self.param
  874. // CHECK:STDOUT: }
  875. // CHECK:STDOUT: %assoc1: %L1.assoc_type = assoc_entity element1, %S1.decl [concrete = constants.%assoc1]
  876. // CHECK:STDOUT:
  877. // CHECK:STDOUT: !members:
  878. // CHECK:STDOUT: .Self = %Self
  879. // CHECK:STDOUT: .R1 = %assoc0
  880. // CHECK:STDOUT: .S1 = %assoc1
  881. // CHECK:STDOUT: witness = (%R1.decl, %S1.decl)
  882. // CHECK:STDOUT: }
  883. // CHECK:STDOUT:
  884. // CHECK:STDOUT: generic fn @R1(@L1.%Self: %L1.type) {
  885. // CHECK:STDOUT: %Self: %L1.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self)]
  886. // CHECK:STDOUT: %Self.as_type.loc4_15.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc4_15.1 (constants.%Self.as_type)]
  887. // CHECK:STDOUT: %pattern_type: type = pattern_type %Self.as_type.loc4_15.1 [symbolic = %pattern_type (constants.%pattern_type.ad3e89.1)]
  888. // CHECK:STDOUT:
  889. // CHECK:STDOUT: fn(%self.param: @R1.%Self.as_type.loc4_15.1 (%Self.as_type));
  890. // CHECK:STDOUT: }
  891. // CHECK:STDOUT:
  892. // CHECK:STDOUT: generic fn @S1(@L1.%Self: %L1.type) {
  893. // CHECK:STDOUT: %Self: %L1.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self)]
  894. // CHECK:STDOUT: %Self.as_type.loc5_24.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc5_24.1 (constants.%Self.as_type)]
  895. // CHECK:STDOUT: %ptr.loc5_24.1: type = ptr_type %Self.as_type.loc5_24.1 [symbolic = %ptr.loc5_24.1 (constants.%ptr.72f01d.1)]
  896. // CHECK:STDOUT: %pattern_type: type = pattern_type %ptr.loc5_24.1 [symbolic = %pattern_type (constants.%pattern_type.53384b.1)]
  897. // CHECK:STDOUT:
  898. // CHECK:STDOUT: fn(%self.param: @S1.%ptr.loc5_24.1 (%ptr.72f01d.1));
  899. // CHECK:STDOUT: }
  900. // CHECK:STDOUT:
  901. // CHECK:STDOUT: generic fn @Simple4(%T.loc9_12.1: %L1.type) {
  902. // CHECK:STDOUT: %T.loc9_12.2: %L1.type = bind_symbolic_name T, 0 [symbolic = %T.loc9_12.2 (constants.%T)]
  903. // CHECK:STDOUT: %T.as_type.loc9_23.2: type = facet_access_type %T.loc9_12.2 [symbolic = %T.as_type.loc9_23.2 (constants.%T.as_type)]
  904. // CHECK:STDOUT: %pattern_type: type = pattern_type %T.as_type.loc9_23.2 [symbolic = %pattern_type (constants.%pattern_type.ad3e89.2)]
  905. // CHECK:STDOUT:
  906. // CHECK:STDOUT: !definition:
  907. // CHECK:STDOUT: %require_complete.loc9: <witness> = require_complete_type %T.as_type.loc9_23.2 [symbolic = %require_complete.loc9 (constants.%require_complete.97cd40.1)]
  908. // CHECK:STDOUT: %L1.lookup_impl_witness: <witness> = lookup_impl_witness %T.loc9_12.2, @L1 [symbolic = %L1.lookup_impl_witness (constants.%L1.lookup_impl_witness.0a136b.1)]
  909. // CHECK:STDOUT: %L1.facet: %L1.type = facet_value %T.as_type.loc9_23.2, (%L1.lookup_impl_witness) [symbolic = %L1.facet (constants.%L1.facet.ed78cc.1)]
  910. // CHECK:STDOUT: %.loc10_4.2: type = fn_type_with_self_type constants.%R1.type, %L1.facet [symbolic = %.loc10_4.2 (constants.%.3b7304.1)]
  911. // CHECK:STDOUT: %impl.elem0.loc10_4.2: @Simple4.%.loc10_4.2 (%.3b7304.1) = impl_witness_access %L1.lookup_impl_witness, element0 [symbolic = %impl.elem0.loc10_4.2 (constants.%impl.elem0.a7f881.1)]
  912. // CHECK:STDOUT: %specific_impl_fn.loc10_4.2: <specific function> = specific_impl_function %impl.elem0.loc10_4.2, @R1(%L1.facet) [symbolic = %specific_impl_fn.loc10_4.2 (constants.%specific_impl_fn.f11365.1)]
  913. // CHECK:STDOUT: %.loc12_8.2: type = fn_type_with_self_type constants.%S1.type, %L1.facet [symbolic = %.loc12_8.2 (constants.%.e9a411.1)]
  914. // CHECK:STDOUT: %impl.elem1.loc12_8.2: @Simple4.%.loc12_8.2 (%.e9a411.1) = impl_witness_access %L1.lookup_impl_witness, element1 [symbolic = %impl.elem1.loc12_8.2 (constants.%impl.elem1.a8c6e3.1)]
  915. // CHECK:STDOUT: %specific_impl_fn.loc12_8.2: <specific function> = specific_impl_function %impl.elem1.loc12_8.2, @S1(%L1.facet) [symbolic = %specific_impl_fn.loc12_8.2 (constants.%specific_impl_fn.bbb82e.1)]
  916. // CHECK:STDOUT: %ptr: type = ptr_type %T.as_type.loc9_23.2 [symbolic = %ptr (constants.%ptr.72f01d.2)]
  917. // CHECK:STDOUT: %require_complete.loc12: <witness> = require_complete_type %ptr [symbolic = %require_complete.loc12 (constants.%require_complete.9326df.1)]
  918. // CHECK:STDOUT:
  919. // CHECK:STDOUT: fn(%x.param: @Simple4.%T.as_type.loc9_23.2 (%T.as_type)) {
  920. // CHECK:STDOUT: !entry:
  921. // CHECK:STDOUT: %x.ref.loc10: @Simple4.%T.as_type.loc9_23.2 (%T.as_type) = name_ref x, %x
  922. // CHECK:STDOUT: %R1.ref: %L1.assoc_type = name_ref R1, @L1.%assoc0 [concrete = constants.%assoc0]
  923. // CHECK:STDOUT: %T.as_type.loc10: type = facet_access_type constants.%T [symbolic = %T.as_type.loc9_23.2 (constants.%T.as_type)]
  924. // CHECK:STDOUT: %.loc10_4.1: type = converted constants.%T, %T.as_type.loc10 [symbolic = %T.as_type.loc9_23.2 (constants.%T.as_type)]
  925. // CHECK:STDOUT: %impl.elem0.loc10_4.1: @Simple4.%.loc10_4.2 (%.3b7304.1) = impl_witness_access constants.%L1.lookup_impl_witness.0a136b.1, element0 [symbolic = %impl.elem0.loc10_4.2 (constants.%impl.elem0.a7f881.1)]
  926. // CHECK:STDOUT: %bound_method.loc10_4: <bound method> = bound_method %x.ref.loc10, %impl.elem0.loc10_4.1
  927. // CHECK:STDOUT: %specific_impl_fn.loc10_4.1: <specific function> = specific_impl_function %impl.elem0.loc10_4.1, @R1(constants.%L1.facet.ed78cc.1) [symbolic = %specific_impl_fn.loc10_4.2 (constants.%specific_impl_fn.f11365.1)]
  928. // CHECK:STDOUT: %bound_method.loc10_8: <bound method> = bound_method %x.ref.loc10, %specific_impl_fn.loc10_4.1
  929. // CHECK:STDOUT: %.loc10_8: init %empty_tuple.type = call %bound_method.loc10_8(%x.ref.loc10)
  930. // CHECK:STDOUT: name_binding_decl {
  931. // CHECK:STDOUT: %xcopy.patt: @Simple4.%pattern_type (%pattern_type.ad3e89.2) = binding_pattern xcopy
  932. // CHECK:STDOUT: %.loc11_3: @Simple4.%pattern_type (%pattern_type.ad3e89.2) = var_pattern %xcopy.patt
  933. // CHECK:STDOUT: }
  934. // CHECK:STDOUT: %xcopy.var: ref @Simple4.%T.as_type.loc9_23.2 (%T.as_type) = var xcopy
  935. // CHECK:STDOUT: %x.ref.loc11: @Simple4.%T.as_type.loc9_23.2 (%T.as_type) = name_ref x, %x
  936. // CHECK:STDOUT: assign %xcopy.var, %x.ref.loc11
  937. // CHECK:STDOUT: %.loc11_14.1: type = splice_block %.loc11_14.2 [symbolic = %T.as_type.loc9_23.2 (constants.%T.as_type)] {
  938. // CHECK:STDOUT: %T.ref.loc11: %L1.type = name_ref T, %T.loc9_12.1 [symbolic = %T.loc9_12.2 (constants.%T)]
  939. // CHECK:STDOUT: %T.as_type.loc11: type = facet_access_type %T.ref.loc11 [symbolic = %T.as_type.loc9_23.2 (constants.%T.as_type)]
  940. // CHECK:STDOUT: %.loc11_14.2: type = converted %T.ref.loc11, %T.as_type.loc11 [symbolic = %T.as_type.loc9_23.2 (constants.%T.as_type)]
  941. // CHECK:STDOUT: }
  942. // CHECK:STDOUT: %xcopy: ref @Simple4.%T.as_type.loc9_23.2 (%T.as_type) = bind_name xcopy, %xcopy.var
  943. // CHECK:STDOUT: %xcopy.ref: ref @Simple4.%T.as_type.loc9_23.2 (%T.as_type) = name_ref xcopy, %xcopy
  944. // CHECK:STDOUT: %S1.ref: %L1.assoc_type = name_ref S1, @L1.%assoc1 [concrete = constants.%assoc1]
  945. // CHECK:STDOUT: %T.as_type.loc12: type = facet_access_type constants.%T [symbolic = %T.as_type.loc9_23.2 (constants.%T.as_type)]
  946. // CHECK:STDOUT: %.loc12_8.1: type = converted constants.%T, %T.as_type.loc12 [symbolic = %T.as_type.loc9_23.2 (constants.%T.as_type)]
  947. // CHECK:STDOUT: %impl.elem1.loc12_8.1: @Simple4.%.loc12_8.2 (%.e9a411.1) = impl_witness_access constants.%L1.lookup_impl_witness.0a136b.1, element1 [symbolic = %impl.elem1.loc12_8.2 (constants.%impl.elem1.a8c6e3.1)]
  948. // CHECK:STDOUT: %bound_method.loc12_8: <bound method> = bound_method %xcopy.ref, %impl.elem1.loc12_8.1
  949. // CHECK:STDOUT: %specific_impl_fn.loc12_8.1: <specific function> = specific_impl_function %impl.elem1.loc12_8.1, @S1(constants.%L1.facet.ed78cc.1) [symbolic = %specific_impl_fn.loc12_8.2 (constants.%specific_impl_fn.bbb82e.1)]
  950. // CHECK:STDOUT: %bound_method.loc12_12: <bound method> = bound_method %xcopy.ref, %specific_impl_fn.loc12_8.1
  951. // CHECK:STDOUT: %addr: @Simple4.%ptr (%ptr.72f01d.2) = addr_of %xcopy.ref
  952. // CHECK:STDOUT: %.loc12_12: init %empty_tuple.type = call %bound_method.loc12_12(%addr)
  953. // CHECK:STDOUT: return
  954. // CHECK:STDOUT: }
  955. // CHECK:STDOUT: }
  956. // CHECK:STDOUT:
  957. // CHECK:STDOUT: generic fn @Compound4(%V.loc16_14.1: %L1.type) {
  958. // CHECK:STDOUT: %V.loc16_14.2: %L1.type = bind_symbolic_name V, 0 [symbolic = %V.loc16_14.2 (constants.%V)]
  959. // CHECK:STDOUT: %V.as_type.loc16_25.2: type = facet_access_type %V.loc16_14.2 [symbolic = %V.as_type.loc16_25.2 (constants.%V.as_type)]
  960. // CHECK:STDOUT: %pattern_type: type = pattern_type %V.as_type.loc16_25.2 [symbolic = %pattern_type (constants.%pattern_type.ad3e89.3)]
  961. // CHECK:STDOUT:
  962. // CHECK:STDOUT: !definition:
  963. // CHECK:STDOUT: %require_complete.loc16: <witness> = require_complete_type %V.as_type.loc16_25.2 [symbolic = %require_complete.loc16 (constants.%require_complete.97cd40.2)]
  964. // CHECK:STDOUT: %L1.lookup_impl_witness: <witness> = lookup_impl_witness %V.loc16_14.2, @L1 [symbolic = %L1.lookup_impl_witness (constants.%L1.lookup_impl_witness.0a136b.2)]
  965. // CHECK:STDOUT: %L1.facet: %L1.type = facet_value %V.as_type.loc16_25.2, (%L1.lookup_impl_witness) [symbolic = %L1.facet (constants.%L1.facet.ed78cc.2)]
  966. // CHECK:STDOUT: %.loc17_4: type = fn_type_with_self_type constants.%R1.type, %L1.facet [symbolic = %.loc17_4 (constants.%.3b7304.2)]
  967. // CHECK:STDOUT: %impl.elem0.loc17_4.2: @Compound4.%.loc17_4 (%.3b7304.2) = impl_witness_access %L1.lookup_impl_witness, element0 [symbolic = %impl.elem0.loc17_4.2 (constants.%impl.elem0.a7f881.2)]
  968. // CHECK:STDOUT: %specific_impl_fn.loc17_4.2: <specific function> = specific_impl_function %impl.elem0.loc17_4.2, @R1(%L1.facet) [symbolic = %specific_impl_fn.loc17_4.2 (constants.%specific_impl_fn.f11365.2)]
  969. // CHECK:STDOUT: %.loc19_8: type = fn_type_with_self_type constants.%S1.type, %L1.facet [symbolic = %.loc19_8 (constants.%.e9a411.2)]
  970. // CHECK:STDOUT: %impl.elem1.loc19_8.2: @Compound4.%.loc19_8 (%.e9a411.2) = impl_witness_access %L1.lookup_impl_witness, element1 [symbolic = %impl.elem1.loc19_8.2 (constants.%impl.elem1.a8c6e3.2)]
  971. // CHECK:STDOUT: %specific_impl_fn.loc19_8.2: <specific function> = specific_impl_function %impl.elem1.loc19_8.2, @S1(%L1.facet) [symbolic = %specific_impl_fn.loc19_8.2 (constants.%specific_impl_fn.bbb82e.2)]
  972. // CHECK:STDOUT: %ptr: type = ptr_type %V.as_type.loc16_25.2 [symbolic = %ptr (constants.%ptr.72f01d.3)]
  973. // CHECK:STDOUT: %require_complete.loc19: <witness> = require_complete_type %ptr [symbolic = %require_complete.loc19 (constants.%require_complete.9326df.2)]
  974. // CHECK:STDOUT:
  975. // CHECK:STDOUT: fn(%y.param: @Compound4.%V.as_type.loc16_25.2 (%V.as_type)) {
  976. // CHECK:STDOUT: !entry:
  977. // CHECK:STDOUT: %y.ref.loc17: @Compound4.%V.as_type.loc16_25.2 (%V.as_type) = name_ref y, %y
  978. // CHECK:STDOUT: %L1.ref.loc17: type = name_ref L1, file.%L1.decl [concrete = constants.%L1.type]
  979. // CHECK:STDOUT: %R1.ref: %L1.assoc_type = name_ref R1, @L1.%assoc0 [concrete = constants.%assoc0]
  980. // CHECK:STDOUT: %impl.elem0.loc17_4.1: @Compound4.%.loc17_4 (%.3b7304.2) = impl_witness_access constants.%L1.lookup_impl_witness.0a136b.2, element0 [symbolic = %impl.elem0.loc17_4.2 (constants.%impl.elem0.a7f881.2)]
  981. // CHECK:STDOUT: %bound_method.loc17_4: <bound method> = bound_method %y.ref.loc17, %impl.elem0.loc17_4.1
  982. // CHECK:STDOUT: %specific_impl_fn.loc17_4.1: <specific function> = specific_impl_function %impl.elem0.loc17_4.1, @R1(constants.%L1.facet.ed78cc.2) [symbolic = %specific_impl_fn.loc17_4.2 (constants.%specific_impl_fn.f11365.2)]
  983. // CHECK:STDOUT: %bound_method.loc17_13: <bound method> = bound_method %y.ref.loc17, %specific_impl_fn.loc17_4.1
  984. // CHECK:STDOUT: %.loc17_13: init %empty_tuple.type = call %bound_method.loc17_13(%y.ref.loc17)
  985. // CHECK:STDOUT: name_binding_decl {
  986. // CHECK:STDOUT: %ycopy.patt: @Compound4.%pattern_type (%pattern_type.ad3e89.3) = binding_pattern ycopy
  987. // CHECK:STDOUT: %.loc18_3: @Compound4.%pattern_type (%pattern_type.ad3e89.3) = var_pattern %ycopy.patt
  988. // CHECK:STDOUT: }
  989. // CHECK:STDOUT: %ycopy.var: ref @Compound4.%V.as_type.loc16_25.2 (%V.as_type) = var ycopy
  990. // CHECK:STDOUT: %y.ref.loc18: @Compound4.%V.as_type.loc16_25.2 (%V.as_type) = name_ref y, %y
  991. // CHECK:STDOUT: assign %ycopy.var, %y.ref.loc18
  992. // CHECK:STDOUT: %.loc18_14.1: type = splice_block %.loc18_14.2 [symbolic = %V.as_type.loc16_25.2 (constants.%V.as_type)] {
  993. // CHECK:STDOUT: %V.ref.loc18: %L1.type = name_ref V, %V.loc16_14.1 [symbolic = %V.loc16_14.2 (constants.%V)]
  994. // CHECK:STDOUT: %V.as_type.loc18: type = facet_access_type %V.ref.loc18 [symbolic = %V.as_type.loc16_25.2 (constants.%V.as_type)]
  995. // CHECK:STDOUT: %.loc18_14.2: type = converted %V.ref.loc18, %V.as_type.loc18 [symbolic = %V.as_type.loc16_25.2 (constants.%V.as_type)]
  996. // CHECK:STDOUT: }
  997. // CHECK:STDOUT: %ycopy: ref @Compound4.%V.as_type.loc16_25.2 (%V.as_type) = bind_name ycopy, %ycopy.var
  998. // CHECK:STDOUT: %ycopy.ref: ref @Compound4.%V.as_type.loc16_25.2 (%V.as_type) = name_ref ycopy, %ycopy
  999. // CHECK:STDOUT: %L1.ref.loc19: type = name_ref L1, file.%L1.decl [concrete = constants.%L1.type]
  1000. // CHECK:STDOUT: %S1.ref: %L1.assoc_type = name_ref S1, @L1.%assoc1 [concrete = constants.%assoc1]
  1001. // CHECK:STDOUT: %impl.elem1.loc19_8.1: @Compound4.%.loc19_8 (%.e9a411.2) = impl_witness_access constants.%L1.lookup_impl_witness.0a136b.2, element1 [symbolic = %impl.elem1.loc19_8.2 (constants.%impl.elem1.a8c6e3.2)]
  1002. // CHECK:STDOUT: %bound_method.loc19_8: <bound method> = bound_method %ycopy.ref, %impl.elem1.loc19_8.1
  1003. // CHECK:STDOUT: %specific_impl_fn.loc19_8.1: <specific function> = specific_impl_function %impl.elem1.loc19_8.1, @S1(constants.%L1.facet.ed78cc.2) [symbolic = %specific_impl_fn.loc19_8.2 (constants.%specific_impl_fn.bbb82e.2)]
  1004. // CHECK:STDOUT: %bound_method.loc19_17: <bound method> = bound_method %ycopy.ref, %specific_impl_fn.loc19_8.1
  1005. // CHECK:STDOUT: %addr: @Compound4.%ptr (%ptr.72f01d.3) = addr_of %ycopy.ref
  1006. // CHECK:STDOUT: %.loc19_17: init %empty_tuple.type = call %bound_method.loc19_17(%addr)
  1007. // CHECK:STDOUT: return
  1008. // CHECK:STDOUT: }
  1009. // CHECK:STDOUT: }
  1010. // CHECK:STDOUT:
  1011. // CHECK:STDOUT: specific @R1(constants.%Self) {
  1012. // CHECK:STDOUT: %Self => constants.%Self
  1013. // CHECK:STDOUT: %Self.as_type.loc4_15.1 => constants.%Self.as_type
  1014. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.ad3e89.1
  1015. // CHECK:STDOUT: }
  1016. // CHECK:STDOUT:
  1017. // CHECK:STDOUT: specific @S1(constants.%Self) {
  1018. // CHECK:STDOUT: %Self => constants.%Self
  1019. // CHECK:STDOUT: %Self.as_type.loc5_24.1 => constants.%Self.as_type
  1020. // CHECK:STDOUT: %ptr.loc5_24.1 => constants.%ptr.72f01d.1
  1021. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.53384b.1
  1022. // CHECK:STDOUT: }
  1023. // CHECK:STDOUT:
  1024. // CHECK:STDOUT: specific @Simple4(constants.%T) {
  1025. // CHECK:STDOUT: %T.loc9_12.2 => constants.%T
  1026. // CHECK:STDOUT: %T.as_type.loc9_23.2 => constants.%T.as_type
  1027. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.ad3e89.2
  1028. // CHECK:STDOUT: }
  1029. // CHECK:STDOUT:
  1030. // CHECK:STDOUT: specific @R1(constants.%L1.facet.ed78cc.1) {
  1031. // CHECK:STDOUT: %Self => constants.%L1.facet.ed78cc.1
  1032. // CHECK:STDOUT: %Self.as_type.loc4_15.1 => constants.%T.as_type
  1033. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.ad3e89.2
  1034. // CHECK:STDOUT: }
  1035. // CHECK:STDOUT:
  1036. // CHECK:STDOUT: specific @S1(constants.%L1.facet.ed78cc.1) {
  1037. // CHECK:STDOUT: %Self => constants.%L1.facet.ed78cc.1
  1038. // CHECK:STDOUT: %Self.as_type.loc5_24.1 => constants.%T.as_type
  1039. // CHECK:STDOUT: %ptr.loc5_24.1 => constants.%ptr.72f01d.2
  1040. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.53384b.2
  1041. // CHECK:STDOUT: }
  1042. // CHECK:STDOUT:
  1043. // CHECK:STDOUT: specific @R1(@Simple4.%L1.facet) {}
  1044. // CHECK:STDOUT:
  1045. // CHECK:STDOUT: specific @S1(@Simple4.%L1.facet) {}
  1046. // CHECK:STDOUT:
  1047. // CHECK:STDOUT: specific @Compound4(constants.%V) {
  1048. // CHECK:STDOUT: %V.loc16_14.2 => constants.%V
  1049. // CHECK:STDOUT: %V.as_type.loc16_25.2 => constants.%V.as_type
  1050. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.ad3e89.3
  1051. // CHECK:STDOUT: }
  1052. // CHECK:STDOUT:
  1053. // CHECK:STDOUT: specific @R1(constants.%L1.facet.ed78cc.2) {
  1054. // CHECK:STDOUT: %Self => constants.%L1.facet.ed78cc.2
  1055. // CHECK:STDOUT: %Self.as_type.loc4_15.1 => constants.%V.as_type
  1056. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.ad3e89.3
  1057. // CHECK:STDOUT: }
  1058. // CHECK:STDOUT:
  1059. // CHECK:STDOUT: specific @S1(constants.%L1.facet.ed78cc.2) {
  1060. // CHECK:STDOUT: %Self => constants.%L1.facet.ed78cc.2
  1061. // CHECK:STDOUT: %Self.as_type.loc5_24.1 => constants.%V.as_type
  1062. // CHECK:STDOUT: %ptr.loc5_24.1 => constants.%ptr.72f01d.3
  1063. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.53384b.3
  1064. // CHECK:STDOUT: }
  1065. // CHECK:STDOUT:
  1066. // CHECK:STDOUT: specific @R1(@Compound4.%L1.facet) {}
  1067. // CHECK:STDOUT:
  1068. // CHECK:STDOUT: specific @S1(@Compound4.%L1.facet) {}
  1069. // CHECK:STDOUT:
  1070. // CHECK:STDOUT: --- fail_interface_instance_caller_not.carbon
  1071. // CHECK:STDOUT:
  1072. // CHECK:STDOUT: constants {
  1073. // CHECK:STDOUT: %L2.type: type = facet_type <@L2> [concrete]
  1074. // CHECK:STDOUT: %Self: %L2.type = bind_symbolic_name Self, 0 [symbolic]
  1075. // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self [symbolic]
  1076. // CHECK:STDOUT: %pattern_type.47b45b.1: type = pattern_type %Self.as_type [symbolic]
  1077. // CHECK:STDOUT: %R2.type: type = fn_type @R2 [concrete]
  1078. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  1079. // CHECK:STDOUT: %R2: %R2.type = struct_value () [concrete]
  1080. // CHECK:STDOUT: %L2.assoc_type: type = assoc_entity_type @L2 [concrete]
  1081. // CHECK:STDOUT: %assoc0: %L2.assoc_type = assoc_entity element0, @L2.%R2.decl [concrete]
  1082. // CHECK:STDOUT: %ptr.f3e54b.1: type = ptr_type %Self.as_type [symbolic]
  1083. // CHECK:STDOUT: %pattern_type.696b36.1: type = pattern_type %ptr.f3e54b.1 [symbolic]
  1084. // CHECK:STDOUT: %pattern_type.f6d: type = pattern_type auto [concrete]
  1085. // CHECK:STDOUT: %S2.type: type = fn_type @S2 [concrete]
  1086. // CHECK:STDOUT: %S2: %S2.type = struct_value () [concrete]
  1087. // CHECK:STDOUT: %assoc1: %L2.assoc_type = assoc_entity element1, @L2.%S2.decl [concrete]
  1088. // CHECK:STDOUT: %T: %L2.type = bind_symbolic_name T, 0 [symbolic]
  1089. // CHECK:STDOUT: %pattern_type.1c0: type = pattern_type %L2.type [concrete]
  1090. // CHECK:STDOUT: %Simple5.type: type = fn_type @Simple5 [concrete]
  1091. // CHECK:STDOUT: %Simple5: %Simple5.type = struct_value () [concrete]
  1092. // CHECK:STDOUT: %T.as_type: type = facet_access_type %T [symbolic]
  1093. // CHECK:STDOUT: %L2.lookup_impl_witness: <witness> = lookup_impl_witness %T, @L2 [symbolic]
  1094. // CHECK:STDOUT: %L2.facet: %L2.type = facet_value %T.as_type, (%L2.lookup_impl_witness) [symbolic]
  1095. // CHECK:STDOUT: %.c42: type = fn_type_with_self_type %R2.type, %L2.facet [symbolic]
  1096. // CHECK:STDOUT: %impl.elem0: %.c42 = impl_witness_access %L2.lookup_impl_witness, element0 [symbolic]
  1097. // CHECK:STDOUT: %pattern_type.47b45b.2: type = pattern_type %T.as_type [symbolic]
  1098. // CHECK:STDOUT: %specific_impl_fn.7ee: <specific function> = specific_impl_function %impl.elem0, @R2(%L2.facet) [symbolic]
  1099. // CHECK:STDOUT: %.7f6: type = fn_type_with_self_type %S2.type, %L2.facet [symbolic]
  1100. // CHECK:STDOUT: %impl.elem1: %.7f6 = impl_witness_access %L2.lookup_impl_witness, element1 [symbolic]
  1101. // CHECK:STDOUT: %ptr.f3e54b.2: type = ptr_type %T.as_type [symbolic]
  1102. // CHECK:STDOUT: %pattern_type.696b36.2: type = pattern_type %ptr.f3e54b.2 [symbolic]
  1103. // CHECK:STDOUT: %specific_impl_fn.b69: <specific function> = specific_impl_function %impl.elem1, @S2(%L2.facet) [symbolic]
  1104. // CHECK:STDOUT: %V: %L2.type = bind_symbolic_name V, 0 [symbolic]
  1105. // CHECK:STDOUT: %Compound5.type: type = fn_type @Compound5 [concrete]
  1106. // CHECK:STDOUT: %Compound5: %Compound5.type = struct_value () [concrete]
  1107. // CHECK:STDOUT: }
  1108. // CHECK:STDOUT:
  1109. // CHECK:STDOUT: imports {
  1110. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  1111. // CHECK:STDOUT: import Core//prelude
  1112. // CHECK:STDOUT: }
  1113. // CHECK:STDOUT: }
  1114. // CHECK:STDOUT:
  1115. // CHECK:STDOUT: file {
  1116. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  1117. // CHECK:STDOUT: .Core = imports.%Core
  1118. // CHECK:STDOUT: .L2 = %L2.decl
  1119. // CHECK:STDOUT: .Simple5 = %Simple5.decl
  1120. // CHECK:STDOUT: .Compound5 = %Compound5.decl
  1121. // CHECK:STDOUT: }
  1122. // CHECK:STDOUT: %Core.import = import Core
  1123. // CHECK:STDOUT: %L2.decl: type = interface_decl @L2 [concrete = constants.%L2.type] {} {}
  1124. // CHECK:STDOUT: %Simple5.decl: %Simple5.type = fn_decl @Simple5 [concrete = constants.%Simple5] {
  1125. // CHECK:STDOUT: %T.patt: %pattern_type.1c0 = symbolic_binding_pattern T, 0
  1126. // CHECK:STDOUT: } {
  1127. // CHECK:STDOUT: %L2.ref: type = name_ref L2, file.%L2.decl [concrete = constants.%L2.type]
  1128. // CHECK:STDOUT: %T.loc10_12.1: %L2.type = bind_symbolic_name T, 0 [symbolic = %T.loc10_12.2 (constants.%T)]
  1129. // CHECK:STDOUT: }
  1130. // CHECK:STDOUT: %Compound5.decl: %Compound5.type = fn_decl @Compound5 [concrete = constants.%Compound5] {
  1131. // CHECK:STDOUT: %V.patt: %pattern_type.1c0 = symbolic_binding_pattern V, 0
  1132. // CHECK:STDOUT: } {
  1133. // CHECK:STDOUT: %L2.ref.loc30: type = name_ref L2, file.%L2.decl [concrete = constants.%L2.type]
  1134. // CHECK:STDOUT: %V.loc30_14.1: %L2.type = bind_symbolic_name V, 0 [symbolic = %V.loc30_14.2 (constants.%V)]
  1135. // CHECK:STDOUT: }
  1136. // CHECK:STDOUT: }
  1137. // CHECK:STDOUT:
  1138. // CHECK:STDOUT: interface @L2 {
  1139. // CHECK:STDOUT: %Self: %L2.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
  1140. // CHECK:STDOUT: %R2.decl: %R2.type = fn_decl @R2 [concrete = constants.%R2] {
  1141. // CHECK:STDOUT: %self.patt: @R2.%pattern_type (%pattern_type.47b45b.1) = binding_pattern self
  1142. // CHECK:STDOUT: %self.param_patt: @R2.%pattern_type (%pattern_type.47b45b.1) = value_param_pattern %self.patt, call_param0
  1143. // CHECK:STDOUT: } {
  1144. // CHECK:STDOUT: %self.param: @R2.%Self.as_type.loc5_15.1 (%Self.as_type) = value_param call_param0
  1145. // CHECK:STDOUT: %.loc5_15.1: type = splice_block %.loc5_15.2 [symbolic = %Self.as_type.loc5_15.1 (constants.%Self.as_type)] {
  1146. // CHECK:STDOUT: %Self.ref: %L2.type = name_ref Self, @L2.%Self [symbolic = %Self (constants.%Self)]
  1147. // CHECK:STDOUT: %Self.as_type.loc5_15.2: type = facet_access_type %Self.ref [symbolic = %Self.as_type.loc5_15.1 (constants.%Self.as_type)]
  1148. // CHECK:STDOUT: %.loc5_15.2: type = converted %Self.ref, %Self.as_type.loc5_15.2 [symbolic = %Self.as_type.loc5_15.1 (constants.%Self.as_type)]
  1149. // CHECK:STDOUT: }
  1150. // CHECK:STDOUT: %self: @R2.%Self.as_type.loc5_15.1 (%Self.as_type) = bind_name self, %self.param
  1151. // CHECK:STDOUT: }
  1152. // CHECK:STDOUT: %assoc0: %L2.assoc_type = assoc_entity element0, %R2.decl [concrete = constants.%assoc0]
  1153. // CHECK:STDOUT: %S2.decl: %S2.type = fn_decl @S2 [concrete = constants.%S2] {
  1154. // CHECK:STDOUT: %self.patt: @S2.%pattern_type (%pattern_type.696b36.1) = binding_pattern self
  1155. // CHECK:STDOUT: %self.param_patt: @S2.%pattern_type (%pattern_type.696b36.1) = value_param_pattern %self.patt, call_param0
  1156. // CHECK:STDOUT: %.loc6_9: %pattern_type.f6d = addr_pattern %self.param_patt
  1157. // CHECK:STDOUT: } {
  1158. // CHECK:STDOUT: %self.param: @S2.%ptr.loc6_24.1 (%ptr.f3e54b.1) = value_param call_param0
  1159. // CHECK:STDOUT: %.loc6_24.1: type = splice_block %ptr.loc6_24.2 [symbolic = %ptr.loc6_24.1 (constants.%ptr.f3e54b.1)] {
  1160. // CHECK:STDOUT: %Self.ref: %L2.type = name_ref Self, @L2.%Self [symbolic = %Self (constants.%Self)]
  1161. // CHECK:STDOUT: %Self.as_type.loc6_24.2: type = facet_access_type %Self.ref [symbolic = %Self.as_type.loc6_24.1 (constants.%Self.as_type)]
  1162. // CHECK:STDOUT: %.loc6_24.2: type = converted %Self.ref, %Self.as_type.loc6_24.2 [symbolic = %Self.as_type.loc6_24.1 (constants.%Self.as_type)]
  1163. // CHECK:STDOUT: %ptr.loc6_24.2: type = ptr_type %.loc6_24.2 [symbolic = %ptr.loc6_24.1 (constants.%ptr.f3e54b.1)]
  1164. // CHECK:STDOUT: }
  1165. // CHECK:STDOUT: %self: @S2.%ptr.loc6_24.1 (%ptr.f3e54b.1) = bind_name self, %self.param
  1166. // CHECK:STDOUT: }
  1167. // CHECK:STDOUT: %assoc1: %L2.assoc_type = assoc_entity element1, %S2.decl [concrete = constants.%assoc1]
  1168. // CHECK:STDOUT:
  1169. // CHECK:STDOUT: !members:
  1170. // CHECK:STDOUT: .Self = %Self
  1171. // CHECK:STDOUT: .R2 = %assoc0
  1172. // CHECK:STDOUT: .S2 = %assoc1
  1173. // CHECK:STDOUT: witness = (%R2.decl, %S2.decl)
  1174. // CHECK:STDOUT: }
  1175. // CHECK:STDOUT:
  1176. // CHECK:STDOUT: generic fn @R2(@L2.%Self: %L2.type) {
  1177. // CHECK:STDOUT: %Self: %L2.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self)]
  1178. // CHECK:STDOUT: %Self.as_type.loc5_15.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc5_15.1 (constants.%Self.as_type)]
  1179. // CHECK:STDOUT: %pattern_type: type = pattern_type %Self.as_type.loc5_15.1 [symbolic = %pattern_type (constants.%pattern_type.47b45b.1)]
  1180. // CHECK:STDOUT:
  1181. // CHECK:STDOUT: fn(%self.param: @R2.%Self.as_type.loc5_15.1 (%Self.as_type));
  1182. // CHECK:STDOUT: }
  1183. // CHECK:STDOUT:
  1184. // CHECK:STDOUT: generic fn @S2(@L2.%Self: %L2.type) {
  1185. // CHECK:STDOUT: %Self: %L2.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self)]
  1186. // CHECK:STDOUT: %Self.as_type.loc6_24.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc6_24.1 (constants.%Self.as_type)]
  1187. // CHECK:STDOUT: %ptr.loc6_24.1: type = ptr_type %Self.as_type.loc6_24.1 [symbolic = %ptr.loc6_24.1 (constants.%ptr.f3e54b.1)]
  1188. // CHECK:STDOUT: %pattern_type: type = pattern_type %ptr.loc6_24.1 [symbolic = %pattern_type (constants.%pattern_type.696b36.1)]
  1189. // CHECK:STDOUT:
  1190. // CHECK:STDOUT: fn(%self.param: @S2.%ptr.loc6_24.1 (%ptr.f3e54b.1));
  1191. // CHECK:STDOUT: }
  1192. // CHECK:STDOUT:
  1193. // CHECK:STDOUT: generic fn @Simple5(%T.loc10_12.1: %L2.type) {
  1194. // CHECK:STDOUT: %T.loc10_12.2: %L2.type = bind_symbolic_name T, 0 [symbolic = %T.loc10_12.2 (constants.%T)]
  1195. // CHECK:STDOUT:
  1196. // CHECK:STDOUT: !definition:
  1197. // CHECK:STDOUT: %T.as_type.loc18_4.2: type = facet_access_type %T.loc10_12.2 [symbolic = %T.as_type.loc18_4.2 (constants.%T.as_type)]
  1198. // CHECK:STDOUT: %L2.lookup_impl_witness: <witness> = lookup_impl_witness %T.loc10_12.2, @L2 [symbolic = %L2.lookup_impl_witness (constants.%L2.lookup_impl_witness)]
  1199. // CHECK:STDOUT: %L2.facet: %L2.type = facet_value %T.as_type.loc18_4.2, (%L2.lookup_impl_witness) [symbolic = %L2.facet (constants.%L2.facet)]
  1200. // CHECK:STDOUT: %.loc18_4.2: type = fn_type_with_self_type constants.%R2.type, %L2.facet [symbolic = %.loc18_4.2 (constants.%.c42)]
  1201. // CHECK:STDOUT: %impl.elem0.loc18_4.2: @Simple5.%.loc18_4.2 (%.c42) = impl_witness_access %L2.lookup_impl_witness, element0 [symbolic = %impl.elem0.loc18_4.2 (constants.%impl.elem0)]
  1202. // CHECK:STDOUT: %specific_impl_fn.loc18_4.2: <specific function> = specific_impl_function %impl.elem0.loc18_4.2, @R2(%L2.facet) [symbolic = %specific_impl_fn.loc18_4.2 (constants.%specific_impl_fn.7ee)]
  1203. // CHECK:STDOUT: %.loc26_4.2: type = fn_type_with_self_type constants.%S2.type, %L2.facet [symbolic = %.loc26_4.2 (constants.%.7f6)]
  1204. // CHECK:STDOUT: %impl.elem1.loc26_4.2: @Simple5.%.loc26_4.2 (%.7f6) = impl_witness_access %L2.lookup_impl_witness, element1 [symbolic = %impl.elem1.loc26_4.2 (constants.%impl.elem1)]
  1205. // CHECK:STDOUT: %specific_impl_fn.loc26_4.2: <specific function> = specific_impl_function %impl.elem1.loc26_4.2, @S2(%L2.facet) [symbolic = %specific_impl_fn.loc26_4.2 (constants.%specific_impl_fn.b69)]
  1206. // CHECK:STDOUT:
  1207. // CHECK:STDOUT: fn() {
  1208. // CHECK:STDOUT: !entry:
  1209. // CHECK:STDOUT: %T.ref.loc18: %L2.type = name_ref T, %T.loc10_12.1 [symbolic = %T.loc10_12.2 (constants.%T)]
  1210. // CHECK:STDOUT: %R2.ref: %L2.assoc_type = name_ref R2, @L2.%assoc0 [concrete = constants.%assoc0]
  1211. // CHECK:STDOUT: %T.as_type.loc18_4.1: type = facet_access_type %T.ref.loc18 [symbolic = %T.as_type.loc18_4.2 (constants.%T.as_type)]
  1212. // CHECK:STDOUT: %.loc18_4.1: type = converted %T.ref.loc18, %T.as_type.loc18_4.1 [symbolic = %T.as_type.loc18_4.2 (constants.%T.as_type)]
  1213. // CHECK:STDOUT: %impl.elem0.loc18_4.1: @Simple5.%.loc18_4.2 (%.c42) = impl_witness_access constants.%L2.lookup_impl_witness, element0 [symbolic = %impl.elem0.loc18_4.2 (constants.%impl.elem0)]
  1214. // CHECK:STDOUT: %specific_impl_fn.loc18_4.1: <specific function> = specific_impl_function %impl.elem0.loc18_4.1, @R2(constants.%L2.facet) [symbolic = %specific_impl_fn.loc18_4.2 (constants.%specific_impl_fn.7ee)]
  1215. // CHECK:STDOUT: %.loc18_8: init %empty_tuple.type = call %specific_impl_fn.loc18_4.1(<error>) [concrete = <error>]
  1216. // CHECK:STDOUT: %T.ref.loc26: %L2.type = name_ref T, %T.loc10_12.1 [symbolic = %T.loc10_12.2 (constants.%T)]
  1217. // CHECK:STDOUT: %S2.ref: %L2.assoc_type = name_ref S2, @L2.%assoc1 [concrete = constants.%assoc1]
  1218. // CHECK:STDOUT: %T.as_type.loc26: type = facet_access_type %T.ref.loc26 [symbolic = %T.as_type.loc18_4.2 (constants.%T.as_type)]
  1219. // CHECK:STDOUT: %.loc26_4.1: type = converted %T.ref.loc26, %T.as_type.loc26 [symbolic = %T.as_type.loc18_4.2 (constants.%T.as_type)]
  1220. // CHECK:STDOUT: %impl.elem1.loc26_4.1: @Simple5.%.loc26_4.2 (%.7f6) = impl_witness_access constants.%L2.lookup_impl_witness, element1 [symbolic = %impl.elem1.loc26_4.2 (constants.%impl.elem1)]
  1221. // CHECK:STDOUT: %specific_impl_fn.loc26_4.1: <specific function> = specific_impl_function %impl.elem1.loc26_4.1, @S2(constants.%L2.facet) [symbolic = %specific_impl_fn.loc26_4.2 (constants.%specific_impl_fn.b69)]
  1222. // CHECK:STDOUT: %addr: <error> = addr_of <error> [concrete = <error>]
  1223. // CHECK:STDOUT: %.loc26_8: init %empty_tuple.type = call %specific_impl_fn.loc26_4.1(<error>) [concrete = <error>]
  1224. // CHECK:STDOUT: return
  1225. // CHECK:STDOUT: }
  1226. // CHECK:STDOUT: }
  1227. // CHECK:STDOUT:
  1228. // CHECK:STDOUT: generic fn @Compound5(%V.loc30_14.1: %L2.type) {
  1229. // CHECK:STDOUT: %V.loc30_14.2: %L2.type = bind_symbolic_name V, 0 [symbolic = %V.loc30_14.2 (constants.%V)]
  1230. // CHECK:STDOUT:
  1231. // CHECK:STDOUT: !definition:
  1232. // CHECK:STDOUT:
  1233. // CHECK:STDOUT: fn() {
  1234. // CHECK:STDOUT: !entry:
  1235. // CHECK:STDOUT: %V.ref.loc35: %L2.type = name_ref V, %V.loc30_14.1 [symbolic = %V.loc30_14.2 (constants.%V)]
  1236. // CHECK:STDOUT: %L2.ref.loc35: type = name_ref L2, file.%L2.decl [concrete = constants.%L2.type]
  1237. // CHECK:STDOUT: %R2.ref: %L2.assoc_type = name_ref R2, @L2.%assoc0 [concrete = constants.%assoc0]
  1238. // CHECK:STDOUT: %V.ref.loc40: %L2.type = name_ref V, %V.loc30_14.1 [symbolic = %V.loc30_14.2 (constants.%V)]
  1239. // CHECK:STDOUT: %L2.ref.loc40: type = name_ref L2, file.%L2.decl [concrete = constants.%L2.type]
  1240. // CHECK:STDOUT: %S2.ref: %L2.assoc_type = name_ref S2, @L2.%assoc1 [concrete = constants.%assoc1]
  1241. // CHECK:STDOUT: return
  1242. // CHECK:STDOUT: }
  1243. // CHECK:STDOUT: }
  1244. // CHECK:STDOUT:
  1245. // CHECK:STDOUT: specific @R2(constants.%Self) {
  1246. // CHECK:STDOUT: %Self => constants.%Self
  1247. // CHECK:STDOUT: %Self.as_type.loc5_15.1 => constants.%Self.as_type
  1248. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.47b45b.1
  1249. // CHECK:STDOUT: }
  1250. // CHECK:STDOUT:
  1251. // CHECK:STDOUT: specific @S2(constants.%Self) {
  1252. // CHECK:STDOUT: %Self => constants.%Self
  1253. // CHECK:STDOUT: %Self.as_type.loc6_24.1 => constants.%Self.as_type
  1254. // CHECK:STDOUT: %ptr.loc6_24.1 => constants.%ptr.f3e54b.1
  1255. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.696b36.1
  1256. // CHECK:STDOUT: }
  1257. // CHECK:STDOUT:
  1258. // CHECK:STDOUT: specific @Simple5(constants.%T) {
  1259. // CHECK:STDOUT: %T.loc10_12.2 => constants.%T
  1260. // CHECK:STDOUT: }
  1261. // CHECK:STDOUT:
  1262. // CHECK:STDOUT: specific @R2(constants.%L2.facet) {
  1263. // CHECK:STDOUT: %Self => constants.%L2.facet
  1264. // CHECK:STDOUT: %Self.as_type.loc5_15.1 => constants.%T.as_type
  1265. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.47b45b.2
  1266. // CHECK:STDOUT: }
  1267. // CHECK:STDOUT:
  1268. // CHECK:STDOUT: specific @S2(constants.%L2.facet) {
  1269. // CHECK:STDOUT: %Self => constants.%L2.facet
  1270. // CHECK:STDOUT: %Self.as_type.loc6_24.1 => constants.%T.as_type
  1271. // CHECK:STDOUT: %ptr.loc6_24.1 => constants.%ptr.f3e54b.2
  1272. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.696b36.2
  1273. // CHECK:STDOUT: }
  1274. // CHECK:STDOUT:
  1275. // CHECK:STDOUT: specific @R2(@Simple5.%L2.facet) {}
  1276. // CHECK:STDOUT:
  1277. // CHECK:STDOUT: specific @S2(@Simple5.%L2.facet) {}
  1278. // CHECK:STDOUT:
  1279. // CHECK:STDOUT: specific @Compound5(constants.%V) {
  1280. // CHECK:STDOUT: %V.loc30_14.2 => constants.%V
  1281. // CHECK:STDOUT: }
  1282. // CHECK:STDOUT:
  1283. // CHECK:STDOUT: --- fail_combine_non_instance.carbon
  1284. // CHECK:STDOUT:
  1285. // CHECK:STDOUT: constants {
  1286. // CHECK:STDOUT: %A.type: type = facet_type <@A> [concrete]
  1287. // CHECK:STDOUT: %Self.31d: %A.type = bind_symbolic_name Self, 0 [symbolic]
  1288. // CHECK:STDOUT: %G.type.c3a: type = fn_type @G.1 [concrete]
  1289. // CHECK:STDOUT: %G.11a: %G.type.c3a = struct_value () [concrete]
  1290. // CHECK:STDOUT: %A.assoc_type: type = assoc_entity_type @A [concrete]
  1291. // CHECK:STDOUT: %assoc0.d52: %A.assoc_type = assoc_entity element0, @A.%G.decl [concrete]
  1292. // CHECK:STDOUT: %C: type = class_type @C [concrete]
  1293. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  1294. // CHECK:STDOUT: %complete_type.357: <witness> = complete_type_witness %empty_struct_type [concrete]
  1295. // CHECK:STDOUT: %A.impl_witness: <witness> = impl_witness file.%A.impl_witness_table [concrete]
  1296. // CHECK:STDOUT: %G.type.486: type = fn_type @G.2 [concrete]
  1297. // CHECK:STDOUT: %G.001: %G.type.486 = struct_value () [concrete]
  1298. // CHECK:STDOUT: %A.facet: %A.type = facet_value %C, (%A.impl_witness) [concrete]
  1299. // CHECK:STDOUT: %Fails.type: type = fn_type @Fails [concrete]
  1300. // CHECK:STDOUT: %Fails: %Fails.type = struct_value () [concrete]
  1301. // CHECK:STDOUT: %C.val: %C = struct_value () [concrete]
  1302. // CHECK:STDOUT: %BitAnd.type: type = facet_type <@BitAnd> [concrete]
  1303. // CHECK:STDOUT: %Self.25f: %BitAnd.type = bind_symbolic_name Self, 0 [symbolic]
  1304. // CHECK:STDOUT: %BitAnd.assoc_type: type = assoc_entity_type @BitAnd [concrete]
  1305. // CHECK:STDOUT: %assoc0.d45: %BitAnd.assoc_type = assoc_entity element0, imports.%Core.import_ref.a93 [concrete]
  1306. // CHECK:STDOUT: %Op.type.27a: type = fn_type @Op.1 [concrete]
  1307. // CHECK:STDOUT: %Self.as_type.19f: type = facet_access_type %Self.25f [symbolic]
  1308. // CHECK:STDOUT: %pattern_type.67d: type = pattern_type %Self.as_type.19f [symbolic]
  1309. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic]
  1310. // CHECK:STDOUT: %pattern_type.98f: type = pattern_type type [concrete]
  1311. // CHECK:STDOUT: %BitAnd.impl_witness_table = impl_witness_table (imports.%Core.import_ref.1e6), @impl.f92 [concrete]
  1312. // CHECK:STDOUT: %BitAnd.impl_witness.b7b: <witness> = impl_witness %BitAnd.impl_witness_table, @impl.f92(%T) [symbolic]
  1313. // CHECK:STDOUT: %Op.type.f99: type = fn_type @Op.2, @impl.f92(%T) [symbolic]
  1314. // CHECK:STDOUT: %Op.05a: %Op.type.f99 = struct_value () [symbolic]
  1315. // CHECK:STDOUT: %pattern_type.7dcd0a.1: type = pattern_type %T [symbolic]
  1316. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type %T [symbolic]
  1317. // CHECK:STDOUT: %BitAnd.impl_witness.0e5: <witness> = impl_witness %BitAnd.impl_witness_table, @impl.f92(type) [concrete]
  1318. // CHECK:STDOUT: %Op.type.eb8: type = fn_type @Op.2, @impl.f92(type) [concrete]
  1319. // CHECK:STDOUT: %Op.444: %Op.type.eb8 = struct_value () [concrete]
  1320. // CHECK:STDOUT: %complete_type.473: <witness> = complete_type_witness type [concrete]
  1321. // CHECK:STDOUT: %BitAnd.facet: %BitAnd.type = facet_value type, (%BitAnd.impl_witness.0e5) [concrete]
  1322. // CHECK:STDOUT: %.518: type = fn_type_with_self_type %Op.type.27a, %BitAnd.facet [concrete]
  1323. // CHECK:STDOUT: %Op.bound: <bound method> = bound_method %A.type, %Op.444 [concrete]
  1324. // CHECK:STDOUT: %Op.specific_fn: <specific function> = specific_function %Op.444, @Op.2(type) [concrete]
  1325. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %A.type, %Op.specific_fn [concrete]
  1326. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic]
  1327. // CHECK:STDOUT: %ImplicitAs.type.d62: type = facet_type <@ImplicitAs, @ImplicitAs(%Dest)> [symbolic]
  1328. // CHECK:STDOUT: %Self.519: %ImplicitAs.type.d62 = bind_symbolic_name Self, 1 [symbolic]
  1329. // CHECK:STDOUT: %Convert.type.275: type = fn_type @Convert, @ImplicitAs(%Dest) [symbolic]
  1330. // CHECK:STDOUT: %Convert.42e: %Convert.type.275 = struct_value () [symbolic]
  1331. // CHECK:STDOUT: %Self.as_type.40a: type = facet_access_type %Self.519 [symbolic]
  1332. // CHECK:STDOUT: %pattern_type.f3e: type = pattern_type %Self.as_type.40a [symbolic]
  1333. // CHECK:STDOUT: %pattern_type.7dcd0a.2: type = pattern_type %Dest [symbolic]
  1334. // CHECK:STDOUT: %ImplicitAs.assoc_type.ca0: type = assoc_entity_type @ImplicitAs, @ImplicitAs(%Dest) [symbolic]
  1335. // CHECK:STDOUT: %assoc0.9f5: %ImplicitAs.assoc_type.ca0 = assoc_entity element0, imports.%Core.import_ref.1c7 [symbolic]
  1336. // CHECK:STDOUT: %ImplicitAs.type.2d2: type = facet_type <@ImplicitAs, @ImplicitAs(%A.type)> [concrete]
  1337. // CHECK:STDOUT: %Self.56d: %ImplicitAs.type.2d2 = bind_symbolic_name Self, 1 [symbolic]
  1338. // CHECK:STDOUT: %Convert.type.597: type = fn_type @Convert, @ImplicitAs(%A.type) [concrete]
  1339. // CHECK:STDOUT: %Convert.d1e: %Convert.type.597 = struct_value () [concrete]
  1340. // CHECK:STDOUT: %ImplicitAs.assoc_type.aa4: type = assoc_entity_type @ImplicitAs, @ImplicitAs(%A.type) [concrete]
  1341. // CHECK:STDOUT: %assoc0.f00: %ImplicitAs.assoc_type.aa4 = assoc_entity element0, imports.%Core.import_ref.1c7 [concrete]
  1342. // CHECK:STDOUT: %assoc0.dc0: %ImplicitAs.assoc_type.ca0 = assoc_entity element0, imports.%Core.import_ref.207 [symbolic]
  1343. // CHECK:STDOUT: }
  1344. // CHECK:STDOUT:
  1345. // CHECK:STDOUT: imports {
  1346. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  1347. // CHECK:STDOUT: .BitAnd = %Core.BitAnd
  1348. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  1349. // CHECK:STDOUT: import Core//prelude
  1350. // CHECK:STDOUT: }
  1351. // CHECK:STDOUT: %Core.import_ref.ad0 = import_ref Core//prelude, inst107 [no loc], unloaded
  1352. // CHECK:STDOUT: %Core.import_ref.a46: %BitAnd.assoc_type = import_ref Core//prelude, loc18_41, loaded [concrete = constants.%assoc0.d45]
  1353. // CHECK:STDOUT: %Core.Op = import_ref Core//prelude, Op, unloaded
  1354. // CHECK:STDOUT: %Core.import_ref.040: %BitAnd.type = import_ref Core//prelude, inst107 [no loc], loaded [symbolic = constants.%Self.25f]
  1355. // CHECK:STDOUT: %Core.import_ref.140: <witness> = import_ref Core//prelude, loc21_36, loaded [symbolic = @impl.f92.%BitAnd.impl_witness (constants.%BitAnd.impl_witness.b7b)]
  1356. // CHECK:STDOUT: %Core.import_ref.5ab3ec.1: type = import_ref Core//prelude, loc21_14, loaded [symbolic = @impl.f92.%T (constants.%T)]
  1357. // CHECK:STDOUT: %Core.import_ref.583: type = import_ref Core//prelude, loc21_24, loaded [symbolic = @impl.f92.%T (constants.%T)]
  1358. // CHECK:STDOUT: %Core.import_ref.9c1: type = import_ref Core//prelude, loc21_29, loaded [concrete = constants.%BitAnd.type]
  1359. // CHECK:STDOUT: %Core.import_ref.5ab3ec.2: type = import_ref Core//prelude, loc21_14, loaded [symbolic = @impl.f92.%T (constants.%T)]
  1360. // CHECK:STDOUT: %Core.import_ref.5ab3ec.3: type = import_ref Core//prelude, loc13_22, loaded [symbolic = @ImplicitAs.%Dest (constants.%Dest)]
  1361. // CHECK:STDOUT: %Core.import_ref.ff5 = import_ref Core//prelude, inst69 [no loc], unloaded
  1362. // CHECK:STDOUT: %Core.import_ref.492: @ImplicitAs.%ImplicitAs.assoc_type (%ImplicitAs.assoc_type.ca0) = import_ref Core//prelude, loc14_35, loaded [symbolic = @ImplicitAs.%assoc0 (constants.%assoc0.dc0)]
  1363. // CHECK:STDOUT: %Core.Convert = import_ref Core//prelude, Convert, unloaded
  1364. // CHECK:STDOUT: %Core.import_ref.5ab3ec.4: type = import_ref Core//prelude, loc13_22, loaded [symbolic = @ImplicitAs.%Dest (constants.%Dest)]
  1365. // CHECK:STDOUT: %Core.import_ref.ce1: @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.d62) = import_ref Core//prelude, inst69 [no loc], loaded [symbolic = @ImplicitAs.%Self (constants.%Self.519)]
  1366. // CHECK:STDOUT: %Core.import_ref.1c7: @ImplicitAs.%Convert.type (%Convert.type.275) = import_ref Core//prelude, loc14_35, loaded [symbolic = @ImplicitAs.%Convert (constants.%Convert.42e)]
  1367. // CHECK:STDOUT: }
  1368. // CHECK:STDOUT:
  1369. // CHECK:STDOUT: file {
  1370. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  1371. // CHECK:STDOUT: .Core = imports.%Core
  1372. // CHECK:STDOUT: .A = %A.decl
  1373. // CHECK:STDOUT: .C = %C.decl
  1374. // CHECK:STDOUT: .Fails = %Fails.decl
  1375. // CHECK:STDOUT: }
  1376. // CHECK:STDOUT: %Core.import = import Core
  1377. // CHECK:STDOUT: %A.decl: type = interface_decl @A [concrete = constants.%A.type] {} {}
  1378. // CHECK:STDOUT: %C.decl: type = class_decl @C [concrete = constants.%C] {} {}
  1379. // CHECK:STDOUT: impl_decl @impl.77d [concrete] {} {
  1380. // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [concrete = constants.%C]
  1381. // CHECK:STDOUT: %A.ref: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1382. // CHECK:STDOUT: }
  1383. // CHECK:STDOUT: %A.impl_witness_table = impl_witness_table (@impl.77d.%G.decl), @impl.77d [concrete]
  1384. // CHECK:STDOUT: %A.impl_witness: <witness> = impl_witness %A.impl_witness_table [concrete = constants.%A.impl_witness]
  1385. // CHECK:STDOUT: %Fails.decl: %Fails.type = fn_decl @Fails [concrete = constants.%Fails] {} {}
  1386. // CHECK:STDOUT: }
  1387. // CHECK:STDOUT:
  1388. // CHECK:STDOUT: interface @A {
  1389. // CHECK:STDOUT: %Self: %A.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.31d]
  1390. // CHECK:STDOUT: %G.decl: %G.type.c3a = fn_decl @G.1 [concrete = constants.%G.11a] {} {}
  1391. // CHECK:STDOUT: %assoc0: %A.assoc_type = assoc_entity element0, %G.decl [concrete = constants.%assoc0.d52]
  1392. // CHECK:STDOUT:
  1393. // CHECK:STDOUT: !members:
  1394. // CHECK:STDOUT: .Self = %Self
  1395. // CHECK:STDOUT: .G = %assoc0
  1396. // CHECK:STDOUT: witness = (%G.decl)
  1397. // CHECK:STDOUT: }
  1398. // CHECK:STDOUT:
  1399. // CHECK:STDOUT: interface @BitAnd [from "include_files/facet_types.carbon"] {
  1400. // CHECK:STDOUT: !members:
  1401. // CHECK:STDOUT: .Self = imports.%Core.import_ref.ad0
  1402. // CHECK:STDOUT: .Op = imports.%Core.import_ref.a46
  1403. // CHECK:STDOUT: witness = (imports.%Core.Op)
  1404. // CHECK:STDOUT: }
  1405. // CHECK:STDOUT:
  1406. // CHECK:STDOUT: generic interface @ImplicitAs(imports.%Core.import_ref.5ab3ec.3: type) [from "include_files/facet_types.carbon"] {
  1407. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic = %Dest (constants.%Dest)]
  1408. // CHECK:STDOUT:
  1409. // CHECK:STDOUT: !definition:
  1410. // CHECK:STDOUT: %ImplicitAs.type: type = facet_type <@ImplicitAs, @ImplicitAs(%Dest)> [symbolic = %ImplicitAs.type (constants.%ImplicitAs.type.d62)]
  1411. // CHECK:STDOUT: %Self: @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.d62) = bind_symbolic_name Self, 1 [symbolic = %Self (constants.%Self.519)]
  1412. // CHECK:STDOUT: %Convert.type: type = fn_type @Convert, @ImplicitAs(%Dest) [symbolic = %Convert.type (constants.%Convert.type.275)]
  1413. // CHECK:STDOUT: %Convert: @ImplicitAs.%Convert.type (%Convert.type.275) = struct_value () [symbolic = %Convert (constants.%Convert.42e)]
  1414. // CHECK:STDOUT: %ImplicitAs.assoc_type: type = assoc_entity_type @ImplicitAs, @ImplicitAs(%Dest) [symbolic = %ImplicitAs.assoc_type (constants.%ImplicitAs.assoc_type.ca0)]
  1415. // CHECK:STDOUT: %assoc0: @ImplicitAs.%ImplicitAs.assoc_type (%ImplicitAs.assoc_type.ca0) = assoc_entity element0, imports.%Core.import_ref.1c7 [symbolic = %assoc0 (constants.%assoc0.9f5)]
  1416. // CHECK:STDOUT:
  1417. // CHECK:STDOUT: interface {
  1418. // CHECK:STDOUT: !members:
  1419. // CHECK:STDOUT: .Self = imports.%Core.import_ref.ff5
  1420. // CHECK:STDOUT: .Convert = imports.%Core.import_ref.492
  1421. // CHECK:STDOUT: witness = (imports.%Core.Convert)
  1422. // CHECK:STDOUT: }
  1423. // CHECK:STDOUT: }
  1424. // CHECK:STDOUT:
  1425. // CHECK:STDOUT: impl @impl.77d: %C.ref as %A.ref {
  1426. // CHECK:STDOUT: %G.decl: %G.type.486 = fn_decl @G.2 [concrete = constants.%G.001] {} {}
  1427. // CHECK:STDOUT:
  1428. // CHECK:STDOUT: !members:
  1429. // CHECK:STDOUT: .G = %G.decl
  1430. // CHECK:STDOUT: witness = file.%A.impl_witness
  1431. // CHECK:STDOUT: }
  1432. // CHECK:STDOUT:
  1433. // CHECK:STDOUT: generic impl @impl.f92(imports.%Core.import_ref.5ab3ec.1: type) [from "include_files/facet_types.carbon"] {
  1434. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic = %T (constants.%T)]
  1435. // CHECK:STDOUT: %BitAnd.impl_witness: <witness> = impl_witness constants.%BitAnd.impl_witness_table, @impl.f92(%T) [symbolic = %BitAnd.impl_witness (constants.%BitAnd.impl_witness.b7b)]
  1436. // CHECK:STDOUT:
  1437. // CHECK:STDOUT: !definition:
  1438. // CHECK:STDOUT: %Op.type: type = fn_type @Op.2, @impl.f92(%T) [symbolic = %Op.type (constants.%Op.type.f99)]
  1439. // CHECK:STDOUT: %Op: @impl.f92.%Op.type (%Op.type.f99) = struct_value () [symbolic = %Op (constants.%Op.05a)]
  1440. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type %T [symbolic = %require_complete (constants.%require_complete)]
  1441. // CHECK:STDOUT:
  1442. // CHECK:STDOUT: impl: imports.%Core.import_ref.583 as imports.%Core.import_ref.9c1 {
  1443. // CHECK:STDOUT: !members:
  1444. // CHECK:STDOUT: witness = imports.%Core.import_ref.140
  1445. // CHECK:STDOUT: }
  1446. // CHECK:STDOUT: }
  1447. // CHECK:STDOUT:
  1448. // CHECK:STDOUT: class @C {
  1449. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  1450. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1451. // CHECK:STDOUT: complete_type_witness = %complete_type
  1452. // CHECK:STDOUT:
  1453. // CHECK:STDOUT: !members:
  1454. // CHECK:STDOUT: .Self = constants.%C
  1455. // CHECK:STDOUT: }
  1456. // CHECK:STDOUT:
  1457. // CHECK:STDOUT: generic fn @G.1(@A.%Self: %A.type) {
  1458. // CHECK:STDOUT: fn();
  1459. // CHECK:STDOUT: }
  1460. // CHECK:STDOUT:
  1461. // CHECK:STDOUT: fn @G.2() {
  1462. // CHECK:STDOUT: !entry:
  1463. // CHECK:STDOUT: return
  1464. // CHECK:STDOUT: }
  1465. // CHECK:STDOUT:
  1466. // CHECK:STDOUT: fn @Fails() {
  1467. // CHECK:STDOUT: !entry:
  1468. // CHECK:STDOUT: %.loc22_5.1: %empty_struct_type = struct_literal ()
  1469. // CHECK:STDOUT: %C.ref.loc22: type = name_ref C, file.%C.decl [concrete = constants.%C]
  1470. // CHECK:STDOUT: %.loc22_5.2: ref %C = temporary_storage
  1471. // CHECK:STDOUT: %.loc22_5.3: init %C = class_init (), %.loc22_5.2 [concrete = constants.%C.val]
  1472. // CHECK:STDOUT: %.loc22_5.4: ref %C = temporary %.loc22_5.2, %.loc22_5.3
  1473. // CHECK:STDOUT: %.loc22_7: ref %C = converted %.loc22_5.1, %.loc22_5.4
  1474. // CHECK:STDOUT: %A.ref.loc22_15: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1475. // CHECK:STDOUT: %A.ref.loc22_19: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1476. // CHECK:STDOUT: %impl.elem0.loc22: %.518 = impl_witness_access constants.%BitAnd.impl_witness.0e5, element0 [concrete = constants.%Op.444]
  1477. // CHECK:STDOUT: %bound_method.loc22_17.1: <bound method> = bound_method %A.ref.loc22_15, %impl.elem0.loc22 [concrete = constants.%Op.bound]
  1478. // CHECK:STDOUT: %specific_fn.loc22: <specific function> = specific_function %impl.elem0.loc22, @Op.2(type) [concrete = constants.%Op.specific_fn]
  1479. // CHECK:STDOUT: %bound_method.loc22_17.2: <bound method> = bound_method %A.ref.loc22_15, %specific_fn.loc22 [concrete = constants.%bound_method]
  1480. // CHECK:STDOUT: %type.and.loc22: init type = call %bound_method.loc22_17.2(%A.ref.loc22_15, %A.ref.loc22_19) [concrete = constants.%A.type]
  1481. // CHECK:STDOUT: %G.ref.loc22: %A.assoc_type = name_ref G, @A.%assoc0 [concrete = constants.%assoc0.d52]
  1482. // CHECK:STDOUT: %.loc22_12: %A.type = converted %.loc22_7, <error> [concrete = <error>]
  1483. // CHECK:STDOUT: %.loc30_6.1: %empty_struct_type = struct_literal ()
  1484. // CHECK:STDOUT: %C.ref.loc30_11: type = name_ref C, file.%C.decl [concrete = constants.%C]
  1485. // CHECK:STDOUT: %.loc30_6.2: ref %C = temporary_storage
  1486. // CHECK:STDOUT: %.loc30_6.3: init %C = class_init (), %.loc30_6.2 [concrete = constants.%C.val]
  1487. // CHECK:STDOUT: %.loc30_6.4: ref %C = temporary %.loc30_6.2, %.loc30_6.3
  1488. // CHECK:STDOUT: %.loc30_8: ref %C = converted %.loc30_6.1, %.loc30_6.4
  1489. // CHECK:STDOUT: %C.ref.loc30_18: type = name_ref C, file.%C.decl [concrete = constants.%C]
  1490. // CHECK:STDOUT: %A.ref.loc30_24: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1491. // CHECK:STDOUT: %A.ref.loc30_28: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1492. // CHECK:STDOUT: %impl.elem0.loc30_26: %.518 = impl_witness_access constants.%BitAnd.impl_witness.0e5, element0 [concrete = constants.%Op.444]
  1493. // CHECK:STDOUT: %bound_method.loc30_26.1: <bound method> = bound_method %A.ref.loc30_24, %impl.elem0.loc30_26 [concrete = constants.%Op.bound]
  1494. // CHECK:STDOUT: %specific_fn.loc30_26: <specific function> = specific_function %impl.elem0.loc30_26, @Op.2(type) [concrete = constants.%Op.specific_fn]
  1495. // CHECK:STDOUT: %bound_method.loc30_26.2: <bound method> = bound_method %A.ref.loc30_24, %specific_fn.loc30_26 [concrete = constants.%bound_method]
  1496. // CHECK:STDOUT: %type.and.loc30_26: init type = call %bound_method.loc30_26.2(%A.ref.loc30_24, %A.ref.loc30_28) [concrete = constants.%A.type]
  1497. // CHECK:STDOUT: %.loc30_29.1: type = value_of_initializer %type.and.loc30_26 [concrete = constants.%A.type]
  1498. // CHECK:STDOUT: %.loc30_29.2: type = converted %type.and.loc30_26, %.loc30_29.1 [concrete = constants.%A.type]
  1499. // CHECK:STDOUT: %A.facet.loc30: %A.type = facet_value constants.%C, (constants.%A.impl_witness) [concrete = constants.%A.facet]
  1500. // CHECK:STDOUT: %.loc30_20: %A.type = converted %C.ref.loc30_18, %A.facet.loc30 [concrete = constants.%A.facet]
  1501. // CHECK:STDOUT: %as_type.loc30: type = facet_access_type %.loc30_20 [concrete = constants.%C]
  1502. // CHECK:STDOUT: %.loc30_30: type = converted %.loc30_20, %as_type.loc30 [concrete = constants.%C]
  1503. // CHECK:STDOUT: %A.ref.loc30_35: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1504. // CHECK:STDOUT: %A.ref.loc30_39: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1505. // CHECK:STDOUT: %impl.elem0.loc30_37: %.518 = impl_witness_access constants.%BitAnd.impl_witness.0e5, element0 [concrete = constants.%Op.444]
  1506. // CHECK:STDOUT: %bound_method.loc30_37.1: <bound method> = bound_method %A.ref.loc30_35, %impl.elem0.loc30_37 [concrete = constants.%Op.bound]
  1507. // CHECK:STDOUT: %specific_fn.loc30_37: <specific function> = specific_function %impl.elem0.loc30_37, @Op.2(type) [concrete = constants.%Op.specific_fn]
  1508. // CHECK:STDOUT: %bound_method.loc30_37.2: <bound method> = bound_method %A.ref.loc30_35, %specific_fn.loc30_37 [concrete = constants.%bound_method]
  1509. // CHECK:STDOUT: %type.and.loc30_37: init type = call %bound_method.loc30_37.2(%A.ref.loc30_35, %A.ref.loc30_39) [concrete = constants.%A.type]
  1510. // CHECK:STDOUT: %G.ref.loc30: %A.assoc_type = name_ref G, @A.%assoc0 [concrete = constants.%assoc0.d52]
  1511. // CHECK:STDOUT: %.loc30_32: %A.type = converted %.loc30_8, <error> [concrete = <error>]
  1512. // CHECK:STDOUT: %.loc38_6.1: %empty_struct_type = struct_literal ()
  1513. // CHECK:STDOUT: %C.ref.loc38_11: type = name_ref C, file.%C.decl [concrete = constants.%C]
  1514. // CHECK:STDOUT: %.loc38_6.2: ref %C = temporary_storage
  1515. // CHECK:STDOUT: %.loc38_6.3: init %C = class_init (), %.loc38_6.2 [concrete = constants.%C.val]
  1516. // CHECK:STDOUT: %.loc38_6.4: ref %C = temporary %.loc38_6.2, %.loc38_6.3
  1517. // CHECK:STDOUT: %.loc38_8: ref %C = converted %.loc38_6.1, %.loc38_6.4
  1518. // CHECK:STDOUT: %C.ref.loc38_18: type = name_ref C, file.%C.decl [concrete = constants.%C]
  1519. // CHECK:STDOUT: %A.ref.loc38_24: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1520. // CHECK:STDOUT: %A.ref.loc38_28: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1521. // CHECK:STDOUT: %impl.elem0.loc38: %.518 = impl_witness_access constants.%BitAnd.impl_witness.0e5, element0 [concrete = constants.%Op.444]
  1522. // CHECK:STDOUT: %bound_method.loc38_26.1: <bound method> = bound_method %A.ref.loc38_24, %impl.elem0.loc38 [concrete = constants.%Op.bound]
  1523. // CHECK:STDOUT: %specific_fn.loc38: <specific function> = specific_function %impl.elem0.loc38, @Op.2(type) [concrete = constants.%Op.specific_fn]
  1524. // CHECK:STDOUT: %bound_method.loc38_26.2: <bound method> = bound_method %A.ref.loc38_24, %specific_fn.loc38 [concrete = constants.%bound_method]
  1525. // CHECK:STDOUT: %type.and.loc38: init type = call %bound_method.loc38_26.2(%A.ref.loc38_24, %A.ref.loc38_28) [concrete = constants.%A.type]
  1526. // CHECK:STDOUT: %.loc38_29.1: type = value_of_initializer %type.and.loc38 [concrete = constants.%A.type]
  1527. // CHECK:STDOUT: %.loc38_29.2: type = converted %type.and.loc38, %.loc38_29.1 [concrete = constants.%A.type]
  1528. // CHECK:STDOUT: %A.facet.loc38: %A.type = facet_value constants.%C, (constants.%A.impl_witness) [concrete = constants.%A.facet]
  1529. // CHECK:STDOUT: %.loc38_20: %A.type = converted %C.ref.loc38_18, %A.facet.loc38 [concrete = constants.%A.facet]
  1530. // CHECK:STDOUT: %as_type.loc38: type = facet_access_type %.loc38_20 [concrete = constants.%C]
  1531. // CHECK:STDOUT: %.loc38_30: type = converted %.loc38_20, %as_type.loc38 [concrete = constants.%C]
  1532. // CHECK:STDOUT: %A.ref.loc38_34: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1533. // CHECK:STDOUT: %G.ref.loc38: %A.assoc_type = name_ref G, @A.%assoc0 [concrete = constants.%assoc0.d52]
  1534. // CHECK:STDOUT: %.loc38_32: %A.type = converted %.loc38_8, <error> [concrete = <error>]
  1535. // CHECK:STDOUT: return
  1536. // CHECK:STDOUT: }
  1537. // CHECK:STDOUT:
  1538. // CHECK:STDOUT: generic fn @Op.1(imports.%Core.import_ref.040: %BitAnd.type) [from "include_files/facet_types.carbon"] {
  1539. // CHECK:STDOUT: %Self: %BitAnd.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self.25f)]
  1540. // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self [symbolic = %Self.as_type (constants.%Self.as_type.19f)]
  1541. // CHECK:STDOUT: %pattern_type: type = pattern_type %Self.as_type [symbolic = %pattern_type (constants.%pattern_type.67d)]
  1542. // CHECK:STDOUT:
  1543. // CHECK:STDOUT: fn;
  1544. // CHECK:STDOUT: }
  1545. // CHECK:STDOUT:
  1546. // CHECK:STDOUT: generic fn @Op.2(imports.%Core.import_ref.5ab3ec.2: type) [from "include_files/facet_types.carbon"] {
  1547. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic = %T (constants.%T)]
  1548. // CHECK:STDOUT: %pattern_type: type = pattern_type %T [symbolic = %pattern_type (constants.%pattern_type.7dcd0a.1)]
  1549. // CHECK:STDOUT:
  1550. // CHECK:STDOUT: !definition:
  1551. // CHECK:STDOUT:
  1552. // CHECK:STDOUT: fn = "type.and";
  1553. // CHECK:STDOUT: }
  1554. // CHECK:STDOUT:
  1555. // CHECK:STDOUT: generic fn @Convert(imports.%Core.import_ref.5ab3ec.4: type, imports.%Core.import_ref.ce1: @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.d62)) [from "include_files/facet_types.carbon"] {
  1556. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic = %Dest (constants.%Dest)]
  1557. // CHECK:STDOUT: %ImplicitAs.type: type = facet_type <@ImplicitAs, @ImplicitAs(%Dest)> [symbolic = %ImplicitAs.type (constants.%ImplicitAs.type.d62)]
  1558. // CHECK:STDOUT: %Self: @Convert.%ImplicitAs.type (%ImplicitAs.type.d62) = bind_symbolic_name Self, 1 [symbolic = %Self (constants.%Self.519)]
  1559. // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self [symbolic = %Self.as_type (constants.%Self.as_type.40a)]
  1560. // CHECK:STDOUT: %pattern_type.1: type = pattern_type %Self.as_type [symbolic = %pattern_type.1 (constants.%pattern_type.f3e)]
  1561. // CHECK:STDOUT: %pattern_type.2: type = pattern_type %Dest [symbolic = %pattern_type.2 (constants.%pattern_type.7dcd0a.2)]
  1562. // CHECK:STDOUT:
  1563. // CHECK:STDOUT: fn;
  1564. // CHECK:STDOUT: }
  1565. // CHECK:STDOUT:
  1566. // CHECK:STDOUT: specific @G.1(constants.%Self.31d) {}
  1567. // CHECK:STDOUT:
  1568. // CHECK:STDOUT: specific @G.1(constants.%A.facet) {}
  1569. // CHECK:STDOUT:
  1570. // CHECK:STDOUT: specific @Op.1(constants.%Self.25f) {
  1571. // CHECK:STDOUT: %Self => constants.%Self.25f
  1572. // CHECK:STDOUT: %Self.as_type => constants.%Self.as_type.19f
  1573. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.67d
  1574. // CHECK:STDOUT: }
  1575. // CHECK:STDOUT:
  1576. // CHECK:STDOUT: specific @impl.f92(constants.%T) {
  1577. // CHECK:STDOUT: %T => constants.%T
  1578. // CHECK:STDOUT: %BitAnd.impl_witness => constants.%BitAnd.impl_witness.b7b
  1579. // CHECK:STDOUT: }
  1580. // CHECK:STDOUT:
  1581. // CHECK:STDOUT: specific @impl.f92(%T) {}
  1582. // CHECK:STDOUT:
  1583. // CHECK:STDOUT: specific @Op.2(constants.%T) {
  1584. // CHECK:STDOUT: %T => constants.%T
  1585. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.7dcd0a.1
  1586. // CHECK:STDOUT: }
  1587. // CHECK:STDOUT:
  1588. // CHECK:STDOUT: specific @impl.f92(type) {
  1589. // CHECK:STDOUT: %T => type
  1590. // CHECK:STDOUT: %BitAnd.impl_witness => constants.%BitAnd.impl_witness.0e5
  1591. // CHECK:STDOUT:
  1592. // CHECK:STDOUT: !definition:
  1593. // CHECK:STDOUT: %Op.type => constants.%Op.type.eb8
  1594. // CHECK:STDOUT: %Op => constants.%Op.444
  1595. // CHECK:STDOUT: %require_complete => constants.%complete_type.473
  1596. // CHECK:STDOUT: }
  1597. // CHECK:STDOUT:
  1598. // CHECK:STDOUT: specific @Op.2(type) {
  1599. // CHECK:STDOUT: %T => type
  1600. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.98f
  1601. // CHECK:STDOUT:
  1602. // CHECK:STDOUT: !definition:
  1603. // CHECK:STDOUT: }
  1604. // CHECK:STDOUT:
  1605. // CHECK:STDOUT: specific @ImplicitAs(constants.%Dest) {
  1606. // CHECK:STDOUT: %Dest => constants.%Dest
  1607. // CHECK:STDOUT: }
  1608. // CHECK:STDOUT:
  1609. // CHECK:STDOUT: specific @ImplicitAs(%Dest) {}
  1610. // CHECK:STDOUT:
  1611. // CHECK:STDOUT: specific @ImplicitAs(@Convert.%Dest) {}
  1612. // CHECK:STDOUT:
  1613. // CHECK:STDOUT: specific @Convert(constants.%Dest, constants.%Self.519) {
  1614. // CHECK:STDOUT: %Dest => constants.%Dest
  1615. // CHECK:STDOUT: %ImplicitAs.type => constants.%ImplicitAs.type.d62
  1616. // CHECK:STDOUT: %Self => constants.%Self.519
  1617. // CHECK:STDOUT: %Self.as_type => constants.%Self.as_type.40a
  1618. // CHECK:STDOUT: %pattern_type.1 => constants.%pattern_type.f3e
  1619. // CHECK:STDOUT: %pattern_type.2 => constants.%pattern_type.7dcd0a.2
  1620. // CHECK:STDOUT: }
  1621. // CHECK:STDOUT:
  1622. // CHECK:STDOUT: specific @ImplicitAs(constants.%A.type) {
  1623. // CHECK:STDOUT: %Dest => constants.%A.type
  1624. // CHECK:STDOUT:
  1625. // CHECK:STDOUT: !definition:
  1626. // CHECK:STDOUT: %ImplicitAs.type => constants.%ImplicitAs.type.2d2
  1627. // CHECK:STDOUT: %Self => constants.%Self.56d
  1628. // CHECK:STDOUT: %Convert.type => constants.%Convert.type.597
  1629. // CHECK:STDOUT: %Convert => constants.%Convert.d1e
  1630. // CHECK:STDOUT: %ImplicitAs.assoc_type => constants.%ImplicitAs.assoc_type.aa4
  1631. // CHECK:STDOUT: %assoc0 => constants.%assoc0.f00
  1632. // CHECK:STDOUT: }
  1633. // CHECK:STDOUT:
  1634. // CHECK:STDOUT: --- allowed_combine_non_instance.carbon
  1635. // CHECK:STDOUT:
  1636. // CHECK:STDOUT: constants {
  1637. // CHECK:STDOUT: %A.type: type = facet_type <@A> [concrete]
  1638. // CHECK:STDOUT: %Self.31d: %A.type = bind_symbolic_name Self, 0 [symbolic]
  1639. // CHECK:STDOUT: %G.type.c3a: type = fn_type @G.1 [concrete]
  1640. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  1641. // CHECK:STDOUT: %G.11a: %G.type.c3a = struct_value () [concrete]
  1642. // CHECK:STDOUT: %A.assoc_type: type = assoc_entity_type @A [concrete]
  1643. // CHECK:STDOUT: %assoc0.d52: %A.assoc_type = assoc_entity element0, @A.%G.decl [concrete]
  1644. // CHECK:STDOUT: %C: type = class_type @C [concrete]
  1645. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  1646. // CHECK:STDOUT: %complete_type.357: <witness> = complete_type_witness %empty_struct_type [concrete]
  1647. // CHECK:STDOUT: %A.impl_witness: <witness> = impl_witness file.%A.impl_witness_table [concrete]
  1648. // CHECK:STDOUT: %G.type.486: type = fn_type @G.2 [concrete]
  1649. // CHECK:STDOUT: %G.001: %G.type.486 = struct_value () [concrete]
  1650. // CHECK:STDOUT: %A.facet: %A.type = facet_value %C, (%A.impl_witness) [concrete]
  1651. // CHECK:STDOUT: %Works.type: type = fn_type @Works [concrete]
  1652. // CHECK:STDOUT: %Works: %Works.type = struct_value () [concrete]
  1653. // CHECK:STDOUT: %BitAnd.type: type = facet_type <@BitAnd> [concrete]
  1654. // CHECK:STDOUT: %Self.25f: %BitAnd.type = bind_symbolic_name Self, 0 [symbolic]
  1655. // CHECK:STDOUT: %BitAnd.assoc_type: type = assoc_entity_type @BitAnd [concrete]
  1656. // CHECK:STDOUT: %assoc0.d45: %BitAnd.assoc_type = assoc_entity element0, imports.%Core.import_ref.a93 [concrete]
  1657. // CHECK:STDOUT: %Op.type.27a: type = fn_type @Op.1 [concrete]
  1658. // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self.25f [symbolic]
  1659. // CHECK:STDOUT: %pattern_type.67d: type = pattern_type %Self.as_type [symbolic]
  1660. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic]
  1661. // CHECK:STDOUT: %pattern_type.98f: type = pattern_type type [concrete]
  1662. // CHECK:STDOUT: %BitAnd.impl_witness_table = impl_witness_table (imports.%Core.import_ref.1e6), @impl.f92 [concrete]
  1663. // CHECK:STDOUT: %BitAnd.impl_witness.b7b: <witness> = impl_witness %BitAnd.impl_witness_table, @impl.f92(%T) [symbolic]
  1664. // CHECK:STDOUT: %Op.type.f99: type = fn_type @Op.2, @impl.f92(%T) [symbolic]
  1665. // CHECK:STDOUT: %Op.05a: %Op.type.f99 = struct_value () [symbolic]
  1666. // CHECK:STDOUT: %pattern_type.7dc: type = pattern_type %T [symbolic]
  1667. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type %T [symbolic]
  1668. // CHECK:STDOUT: %BitAnd.impl_witness.0e5: <witness> = impl_witness %BitAnd.impl_witness_table, @impl.f92(type) [concrete]
  1669. // CHECK:STDOUT: %Op.type.eb8: type = fn_type @Op.2, @impl.f92(type) [concrete]
  1670. // CHECK:STDOUT: %Op.444: %Op.type.eb8 = struct_value () [concrete]
  1671. // CHECK:STDOUT: %complete_type.473: <witness> = complete_type_witness type [concrete]
  1672. // CHECK:STDOUT: %BitAnd.facet: %BitAnd.type = facet_value type, (%BitAnd.impl_witness.0e5) [concrete]
  1673. // CHECK:STDOUT: %.518: type = fn_type_with_self_type %Op.type.27a, %BitAnd.facet [concrete]
  1674. // CHECK:STDOUT: %Op.bound: <bound method> = bound_method %A.type, %Op.444 [concrete]
  1675. // CHECK:STDOUT: %Op.specific_fn: <specific function> = specific_function %Op.444, @Op.2(type) [concrete]
  1676. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %A.type, %Op.specific_fn [concrete]
  1677. // CHECK:STDOUT: %.e63: type = fn_type_with_self_type %G.type.c3a, %A.facet [concrete]
  1678. // CHECK:STDOUT: }
  1679. // CHECK:STDOUT:
  1680. // CHECK:STDOUT: imports {
  1681. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  1682. // CHECK:STDOUT: .BitAnd = %Core.BitAnd
  1683. // CHECK:STDOUT: import Core//prelude
  1684. // CHECK:STDOUT: }
  1685. // CHECK:STDOUT: %Core.import_ref.ad0 = import_ref Core//prelude, inst107 [no loc], unloaded
  1686. // CHECK:STDOUT: %Core.import_ref.a46: %BitAnd.assoc_type = import_ref Core//prelude, loc18_41, loaded [concrete = constants.%assoc0.d45]
  1687. // CHECK:STDOUT: %Core.Op = import_ref Core//prelude, Op, unloaded
  1688. // CHECK:STDOUT: %Core.import_ref.040: %BitAnd.type = import_ref Core//prelude, inst107 [no loc], loaded [symbolic = constants.%Self.25f]
  1689. // CHECK:STDOUT: %Core.import_ref.140: <witness> = import_ref Core//prelude, loc21_36, loaded [symbolic = @impl.f92.%BitAnd.impl_witness (constants.%BitAnd.impl_witness.b7b)]
  1690. // CHECK:STDOUT: %Core.import_ref.5ab3ec.1: type = import_ref Core//prelude, loc21_14, loaded [symbolic = @impl.f92.%T (constants.%T)]
  1691. // CHECK:STDOUT: %Core.import_ref.583: type = import_ref Core//prelude, loc21_24, loaded [symbolic = @impl.f92.%T (constants.%T)]
  1692. // CHECK:STDOUT: %Core.import_ref.9c1: type = import_ref Core//prelude, loc21_29, loaded [concrete = constants.%BitAnd.type]
  1693. // CHECK:STDOUT: %Core.import_ref.5ab3ec.2: type = import_ref Core//prelude, loc21_14, loaded [symbolic = @impl.f92.%T (constants.%T)]
  1694. // CHECK:STDOUT: }
  1695. // CHECK:STDOUT:
  1696. // CHECK:STDOUT: file {
  1697. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  1698. // CHECK:STDOUT: .Core = imports.%Core
  1699. // CHECK:STDOUT: .A = %A.decl
  1700. // CHECK:STDOUT: .C = %C.decl
  1701. // CHECK:STDOUT: .Works = %Works.decl
  1702. // CHECK:STDOUT: }
  1703. // CHECK:STDOUT: %Core.import = import Core
  1704. // CHECK:STDOUT: %A.decl: type = interface_decl @A [concrete = constants.%A.type] {} {}
  1705. // CHECK:STDOUT: %C.decl: type = class_decl @C [concrete = constants.%C] {} {}
  1706. // CHECK:STDOUT: impl_decl @impl.77d [concrete] {} {
  1707. // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [concrete = constants.%C]
  1708. // CHECK:STDOUT: %A.ref: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1709. // CHECK:STDOUT: }
  1710. // CHECK:STDOUT: %A.impl_witness_table = impl_witness_table (@impl.77d.%G.decl), @impl.77d [concrete]
  1711. // CHECK:STDOUT: %A.impl_witness: <witness> = impl_witness %A.impl_witness_table [concrete = constants.%A.impl_witness]
  1712. // CHECK:STDOUT: %Works.decl: %Works.type = fn_decl @Works [concrete = constants.%Works] {} {}
  1713. // CHECK:STDOUT: }
  1714. // CHECK:STDOUT:
  1715. // CHECK:STDOUT: interface @A {
  1716. // CHECK:STDOUT: %Self: %A.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.31d]
  1717. // CHECK:STDOUT: %G.decl: %G.type.c3a = fn_decl @G.1 [concrete = constants.%G.11a] {} {}
  1718. // CHECK:STDOUT: %assoc0: %A.assoc_type = assoc_entity element0, %G.decl [concrete = constants.%assoc0.d52]
  1719. // CHECK:STDOUT:
  1720. // CHECK:STDOUT: !members:
  1721. // CHECK:STDOUT: .Self = %Self
  1722. // CHECK:STDOUT: .G = %assoc0
  1723. // CHECK:STDOUT: witness = (%G.decl)
  1724. // CHECK:STDOUT: }
  1725. // CHECK:STDOUT:
  1726. // CHECK:STDOUT: interface @BitAnd [from "include_files/facet_types.carbon"] {
  1727. // CHECK:STDOUT: !members:
  1728. // CHECK:STDOUT: .Self = imports.%Core.import_ref.ad0
  1729. // CHECK:STDOUT: .Op = imports.%Core.import_ref.a46
  1730. // CHECK:STDOUT: witness = (imports.%Core.Op)
  1731. // CHECK:STDOUT: }
  1732. // CHECK:STDOUT:
  1733. // CHECK:STDOUT: impl @impl.77d: %C.ref as %A.ref {
  1734. // CHECK:STDOUT: %G.decl: %G.type.486 = fn_decl @G.2 [concrete = constants.%G.001] {} {}
  1735. // CHECK:STDOUT:
  1736. // CHECK:STDOUT: !members:
  1737. // CHECK:STDOUT: .G = %G.decl
  1738. // CHECK:STDOUT: witness = file.%A.impl_witness
  1739. // CHECK:STDOUT: }
  1740. // CHECK:STDOUT:
  1741. // CHECK:STDOUT: generic impl @impl.f92(imports.%Core.import_ref.5ab3ec.1: type) [from "include_files/facet_types.carbon"] {
  1742. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic = %T (constants.%T)]
  1743. // CHECK:STDOUT: %BitAnd.impl_witness: <witness> = impl_witness constants.%BitAnd.impl_witness_table, @impl.f92(%T) [symbolic = %BitAnd.impl_witness (constants.%BitAnd.impl_witness.b7b)]
  1744. // CHECK:STDOUT:
  1745. // CHECK:STDOUT: !definition:
  1746. // CHECK:STDOUT: %Op.type: type = fn_type @Op.2, @impl.f92(%T) [symbolic = %Op.type (constants.%Op.type.f99)]
  1747. // CHECK:STDOUT: %Op: @impl.f92.%Op.type (%Op.type.f99) = struct_value () [symbolic = %Op (constants.%Op.05a)]
  1748. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type %T [symbolic = %require_complete (constants.%require_complete)]
  1749. // CHECK:STDOUT:
  1750. // CHECK:STDOUT: impl: imports.%Core.import_ref.583 as imports.%Core.import_ref.9c1 {
  1751. // CHECK:STDOUT: !members:
  1752. // CHECK:STDOUT: witness = imports.%Core.import_ref.140
  1753. // CHECK:STDOUT: }
  1754. // CHECK:STDOUT: }
  1755. // CHECK:STDOUT:
  1756. // CHECK:STDOUT: class @C {
  1757. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  1758. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1759. // CHECK:STDOUT: complete_type_witness = %complete_type
  1760. // CHECK:STDOUT:
  1761. // CHECK:STDOUT: !members:
  1762. // CHECK:STDOUT: .Self = constants.%C
  1763. // CHECK:STDOUT: }
  1764. // CHECK:STDOUT:
  1765. // CHECK:STDOUT: generic fn @G.1(@A.%Self: %A.type) {
  1766. // CHECK:STDOUT: fn();
  1767. // CHECK:STDOUT: }
  1768. // CHECK:STDOUT:
  1769. // CHECK:STDOUT: fn @G.2() {
  1770. // CHECK:STDOUT: !entry:
  1771. // CHECK:STDOUT: return
  1772. // CHECK:STDOUT: }
  1773. // CHECK:STDOUT:
  1774. // CHECK:STDOUT: fn @Works() {
  1775. // CHECK:STDOUT: !entry:
  1776. // CHECK:STDOUT: %C.ref.loc13: type = name_ref C, file.%C.decl [concrete = constants.%C]
  1777. // CHECK:STDOUT: %A.ref.loc13_7: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1778. // CHECK:STDOUT: %A.ref.loc13_11: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1779. // CHECK:STDOUT: %impl.elem0.loc13_9: %.518 = impl_witness_access constants.%BitAnd.impl_witness.0e5, element0 [concrete = constants.%Op.444]
  1780. // CHECK:STDOUT: %bound_method.loc13_9.1: <bound method> = bound_method %A.ref.loc13_7, %impl.elem0.loc13_9 [concrete = constants.%Op.bound]
  1781. // CHECK:STDOUT: %specific_fn.loc13: <specific function> = specific_function %impl.elem0.loc13_9, @Op.2(type) [concrete = constants.%Op.specific_fn]
  1782. // CHECK:STDOUT: %bound_method.loc13_9.2: <bound method> = bound_method %A.ref.loc13_7, %specific_fn.loc13 [concrete = constants.%bound_method]
  1783. // CHECK:STDOUT: %type.and.loc13: init type = call %bound_method.loc13_9.2(%A.ref.loc13_7, %A.ref.loc13_11) [concrete = constants.%A.type]
  1784. // CHECK:STDOUT: %G.ref.loc13: %A.assoc_type = name_ref G, @A.%assoc0 [concrete = constants.%assoc0.d52]
  1785. // CHECK:STDOUT: %A.facet.loc13: %A.type = facet_value constants.%C, (constants.%A.impl_witness) [concrete = constants.%A.facet]
  1786. // CHECK:STDOUT: %.loc13: %A.type = converted %C.ref.loc13, %A.facet.loc13 [concrete = constants.%A.facet]
  1787. // CHECK:STDOUT: %impl.elem0.loc13_4: %.e63 = impl_witness_access constants.%A.impl_witness, element0 [concrete = constants.%G.001]
  1788. // CHECK:STDOUT: %G.call.loc13: init %empty_tuple.type = call %impl.elem0.loc13_4()
  1789. // CHECK:STDOUT: %C.ref.loc14: type = name_ref C, file.%C.decl [concrete = constants.%C]
  1790. // CHECK:STDOUT: %A.ref.loc14_10: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1791. // CHECK:STDOUT: %A.ref.loc14_14: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1792. // CHECK:STDOUT: %impl.elem0.loc14_12: %.518 = impl_witness_access constants.%BitAnd.impl_witness.0e5, element0 [concrete = constants.%Op.444]
  1793. // CHECK:STDOUT: %bound_method.loc14_12.1: <bound method> = bound_method %A.ref.loc14_10, %impl.elem0.loc14_12 [concrete = constants.%Op.bound]
  1794. // CHECK:STDOUT: %specific_fn.loc14_12: <specific function> = specific_function %impl.elem0.loc14_12, @Op.2(type) [concrete = constants.%Op.specific_fn]
  1795. // CHECK:STDOUT: %bound_method.loc14_12.2: <bound method> = bound_method %A.ref.loc14_10, %specific_fn.loc14_12 [concrete = constants.%bound_method]
  1796. // CHECK:STDOUT: %type.and.loc14_12: init type = call %bound_method.loc14_12.2(%A.ref.loc14_10, %A.ref.loc14_14) [concrete = constants.%A.type]
  1797. // CHECK:STDOUT: %.loc14_15.1: type = value_of_initializer %type.and.loc14_12 [concrete = constants.%A.type]
  1798. // CHECK:STDOUT: %.loc14_15.2: type = converted %type.and.loc14_12, %.loc14_15.1 [concrete = constants.%A.type]
  1799. // CHECK:STDOUT: %A.facet.loc14: %A.type = facet_value constants.%C, (constants.%A.impl_witness) [concrete = constants.%A.facet]
  1800. // CHECK:STDOUT: %.loc14_6: %A.type = converted %C.ref.loc14, %A.facet.loc14 [concrete = constants.%A.facet]
  1801. // CHECK:STDOUT: %A.ref.loc14_20: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1802. // CHECK:STDOUT: %A.ref.loc14_24: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1803. // CHECK:STDOUT: %impl.elem0.loc14_22: %.518 = impl_witness_access constants.%BitAnd.impl_witness.0e5, element0 [concrete = constants.%Op.444]
  1804. // CHECK:STDOUT: %bound_method.loc14_22.1: <bound method> = bound_method %A.ref.loc14_20, %impl.elem0.loc14_22 [concrete = constants.%Op.bound]
  1805. // CHECK:STDOUT: %specific_fn.loc14_22: <specific function> = specific_function %impl.elem0.loc14_22, @Op.2(type) [concrete = constants.%Op.specific_fn]
  1806. // CHECK:STDOUT: %bound_method.loc14_22.2: <bound method> = bound_method %A.ref.loc14_20, %specific_fn.loc14_22 [concrete = constants.%bound_method]
  1807. // CHECK:STDOUT: %type.and.loc14_22: init type = call %bound_method.loc14_22.2(%A.ref.loc14_20, %A.ref.loc14_24) [concrete = constants.%A.type]
  1808. // CHECK:STDOUT: %G.ref.loc14: %A.assoc_type = name_ref G, @A.%assoc0 [concrete = constants.%assoc0.d52]
  1809. // CHECK:STDOUT: %impl.elem0.loc14_17: %.e63 = impl_witness_access constants.%A.impl_witness, element0 [concrete = constants.%G.001]
  1810. // CHECK:STDOUT: %G.call.loc14: init %empty_tuple.type = call %impl.elem0.loc14_17()
  1811. // CHECK:STDOUT: %C.ref.loc15: type = name_ref C, file.%C.decl [concrete = constants.%C]
  1812. // CHECK:STDOUT: %A.ref.loc15_10: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1813. // CHECK:STDOUT: %A.ref.loc15_14: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1814. // CHECK:STDOUT: %impl.elem0.loc15_12: %.518 = impl_witness_access constants.%BitAnd.impl_witness.0e5, element0 [concrete = constants.%Op.444]
  1815. // CHECK:STDOUT: %bound_method.loc15_12.1: <bound method> = bound_method %A.ref.loc15_10, %impl.elem0.loc15_12 [concrete = constants.%Op.bound]
  1816. // CHECK:STDOUT: %specific_fn.loc15: <specific function> = specific_function %impl.elem0.loc15_12, @Op.2(type) [concrete = constants.%Op.specific_fn]
  1817. // CHECK:STDOUT: %bound_method.loc15_12.2: <bound method> = bound_method %A.ref.loc15_10, %specific_fn.loc15 [concrete = constants.%bound_method]
  1818. // CHECK:STDOUT: %type.and.loc15: init type = call %bound_method.loc15_12.2(%A.ref.loc15_10, %A.ref.loc15_14) [concrete = constants.%A.type]
  1819. // CHECK:STDOUT: %.loc15_15.1: type = value_of_initializer %type.and.loc15 [concrete = constants.%A.type]
  1820. // CHECK:STDOUT: %.loc15_15.2: type = converted %type.and.loc15, %.loc15_15.1 [concrete = constants.%A.type]
  1821. // CHECK:STDOUT: %A.facet.loc15: %A.type = facet_value constants.%C, (constants.%A.impl_witness) [concrete = constants.%A.facet]
  1822. // CHECK:STDOUT: %.loc15_6: %A.type = converted %C.ref.loc15, %A.facet.loc15 [concrete = constants.%A.facet]
  1823. // CHECK:STDOUT: %A.ref.loc15_19: type = name_ref A, file.%A.decl [concrete = constants.%A.type]
  1824. // CHECK:STDOUT: %G.ref.loc15: %A.assoc_type = name_ref G, @A.%assoc0 [concrete = constants.%assoc0.d52]
  1825. // CHECK:STDOUT: %impl.elem0.loc15_17: %.e63 = impl_witness_access constants.%A.impl_witness, element0 [concrete = constants.%G.001]
  1826. // CHECK:STDOUT: %G.call.loc15: init %empty_tuple.type = call %impl.elem0.loc15_17()
  1827. // CHECK:STDOUT: return
  1828. // CHECK:STDOUT: }
  1829. // CHECK:STDOUT:
  1830. // CHECK:STDOUT: generic fn @Op.1(imports.%Core.import_ref.040: %BitAnd.type) [from "include_files/facet_types.carbon"] {
  1831. // CHECK:STDOUT: %Self: %BitAnd.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self.25f)]
  1832. // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self [symbolic = %Self.as_type (constants.%Self.as_type)]
  1833. // CHECK:STDOUT: %pattern_type: type = pattern_type %Self.as_type [symbolic = %pattern_type (constants.%pattern_type.67d)]
  1834. // CHECK:STDOUT:
  1835. // CHECK:STDOUT: fn;
  1836. // CHECK:STDOUT: }
  1837. // CHECK:STDOUT:
  1838. // CHECK:STDOUT: generic fn @Op.2(imports.%Core.import_ref.5ab3ec.2: type) [from "include_files/facet_types.carbon"] {
  1839. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic = %T (constants.%T)]
  1840. // CHECK:STDOUT: %pattern_type: type = pattern_type %T [symbolic = %pattern_type (constants.%pattern_type.7dc)]
  1841. // CHECK:STDOUT:
  1842. // CHECK:STDOUT: !definition:
  1843. // CHECK:STDOUT:
  1844. // CHECK:STDOUT: fn = "type.and";
  1845. // CHECK:STDOUT: }
  1846. // CHECK:STDOUT:
  1847. // CHECK:STDOUT: specific @G.1(constants.%Self.31d) {}
  1848. // CHECK:STDOUT:
  1849. // CHECK:STDOUT: specific @G.1(constants.%A.facet) {}
  1850. // CHECK:STDOUT:
  1851. // CHECK:STDOUT: specific @Op.1(constants.%Self.25f) {
  1852. // CHECK:STDOUT: %Self => constants.%Self.25f
  1853. // CHECK:STDOUT: %Self.as_type => constants.%Self.as_type
  1854. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.67d
  1855. // CHECK:STDOUT: }
  1856. // CHECK:STDOUT:
  1857. // CHECK:STDOUT: specific @impl.f92(constants.%T) {
  1858. // CHECK:STDOUT: %T => constants.%T
  1859. // CHECK:STDOUT: %BitAnd.impl_witness => constants.%BitAnd.impl_witness.b7b
  1860. // CHECK:STDOUT: }
  1861. // CHECK:STDOUT:
  1862. // CHECK:STDOUT: specific @impl.f92(%T) {}
  1863. // CHECK:STDOUT:
  1864. // CHECK:STDOUT: specific @Op.2(constants.%T) {
  1865. // CHECK:STDOUT: %T => constants.%T
  1866. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.7dc
  1867. // CHECK:STDOUT: }
  1868. // CHECK:STDOUT:
  1869. // CHECK:STDOUT: specific @impl.f92(type) {
  1870. // CHECK:STDOUT: %T => type
  1871. // CHECK:STDOUT: %BitAnd.impl_witness => constants.%BitAnd.impl_witness.0e5
  1872. // CHECK:STDOUT:
  1873. // CHECK:STDOUT: !definition:
  1874. // CHECK:STDOUT: %Op.type => constants.%Op.type.eb8
  1875. // CHECK:STDOUT: %Op => constants.%Op.444
  1876. // CHECK:STDOUT: %require_complete => constants.%complete_type.473
  1877. // CHECK:STDOUT: }
  1878. // CHECK:STDOUT:
  1879. // CHECK:STDOUT: specific @Op.2(type) {
  1880. // CHECK:STDOUT: %T => type
  1881. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.98f
  1882. // CHECK:STDOUT:
  1883. // CHECK:STDOUT: !definition:
  1884. // CHECK:STDOUT: }
  1885. // CHECK:STDOUT:
  1886. // CHECK:STDOUT: --- include_files/facet_types.carbon
  1887. // CHECK:STDOUT:
  1888. // CHECK:STDOUT: constants {
  1889. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic]
  1890. // CHECK:STDOUT: %pattern_type.98f: type = pattern_type type [concrete]
  1891. // CHECK:STDOUT: %As.type.b51: type = generic_interface_type @As [concrete]
  1892. // CHECK:STDOUT: %As.generic: %As.type.b51 = struct_value () [concrete]
  1893. // CHECK:STDOUT: %As.type.8ba: type = facet_type <@As, @As(%Dest)> [symbolic]
  1894. // CHECK:STDOUT: %Self.b4e: %As.type.8ba = bind_symbolic_name Self, 1 [symbolic]
  1895. // CHECK:STDOUT: %Self.as_type.7f0: type = facet_access_type %Self.b4e [symbolic]
  1896. // CHECK:STDOUT: %pattern_type.947: type = pattern_type %Self.as_type.7f0 [symbolic]
  1897. // CHECK:STDOUT: %pattern_type.7dcd0a.1: type = pattern_type %Dest [symbolic]
  1898. // CHECK:STDOUT: %Convert.type.ad1: type = fn_type @Convert.1, @As(%Dest) [symbolic]
  1899. // CHECK:STDOUT: %Convert.0ed: %Convert.type.ad1 = struct_value () [symbolic]
  1900. // CHECK:STDOUT: %As.assoc_type: type = assoc_entity_type @As, @As(%Dest) [symbolic]
  1901. // CHECK:STDOUT: %assoc0.1d5: %As.assoc_type = assoc_entity element0, @As.%Convert.decl [symbolic]
  1902. // CHECK:STDOUT: %ImplicitAs.type.96f: type = generic_interface_type @ImplicitAs [concrete]
  1903. // CHECK:STDOUT: %ImplicitAs.generic: %ImplicitAs.type.96f = struct_value () [concrete]
  1904. // CHECK:STDOUT: %ImplicitAs.type.07f: type = facet_type <@ImplicitAs, @ImplicitAs(%Dest)> [symbolic]
  1905. // CHECK:STDOUT: %Self.0f3: %ImplicitAs.type.07f = bind_symbolic_name Self, 1 [symbolic]
  1906. // CHECK:STDOUT: %Self.as_type.419: type = facet_access_type %Self.0f3 [symbolic]
  1907. // CHECK:STDOUT: %pattern_type.a93: type = pattern_type %Self.as_type.419 [symbolic]
  1908. // CHECK:STDOUT: %Convert.type.4cf: type = fn_type @Convert.2, @ImplicitAs(%Dest) [symbolic]
  1909. // CHECK:STDOUT: %Convert.147: %Convert.type.4cf = struct_value () [symbolic]
  1910. // CHECK:STDOUT: %ImplicitAs.assoc_type: type = assoc_entity_type @ImplicitAs, @ImplicitAs(%Dest) [symbolic]
  1911. // CHECK:STDOUT: %assoc0.8f8: %ImplicitAs.assoc_type = assoc_entity element0, @ImplicitAs.%Convert.decl [symbolic]
  1912. // CHECK:STDOUT: %BitAnd.type: type = facet_type <@BitAnd> [concrete]
  1913. // CHECK:STDOUT: %Self.e44: %BitAnd.type = bind_symbolic_name Self, 0 [symbolic]
  1914. // CHECK:STDOUT: %Self.as_type.560: type = facet_access_type %Self.e44 [symbolic]
  1915. // CHECK:STDOUT: %pattern_type.a80: type = pattern_type %Self.as_type.560 [symbolic]
  1916. // CHECK:STDOUT: %Op.type.613: type = fn_type @Op.1 [concrete]
  1917. // CHECK:STDOUT: %Op.d98: %Op.type.613 = struct_value () [concrete]
  1918. // CHECK:STDOUT: %BitAnd.assoc_type: type = assoc_entity_type @BitAnd [concrete]
  1919. // CHECK:STDOUT: %assoc0.220: %BitAnd.assoc_type = assoc_entity element0, @BitAnd.%Op.decl [concrete]
  1920. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic]
  1921. // CHECK:STDOUT: %BitAnd.impl_witness: <witness> = impl_witness file.%BitAnd.impl_witness_table, @impl(%T) [symbolic]
  1922. // CHECK:STDOUT: %pattern_type.7dcd0a.2: type = pattern_type %T [symbolic]
  1923. // CHECK:STDOUT: %Op.type.28d: type = fn_type @Op.2, @impl(%T) [symbolic]
  1924. // CHECK:STDOUT: %Op.902: %Op.type.28d = struct_value () [symbolic]
  1925. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type %T [symbolic]
  1926. // CHECK:STDOUT: %BitAnd.facet: %BitAnd.type = facet_value %T, (%BitAnd.impl_witness) [symbolic]
  1927. // CHECK:STDOUT: }
  1928. // CHECK:STDOUT:
  1929. // CHECK:STDOUT: file {
  1930. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  1931. // CHECK:STDOUT: .As = %As.decl
  1932. // CHECK:STDOUT: .ImplicitAs = %ImplicitAs.decl
  1933. // CHECK:STDOUT: .BitAnd = %BitAnd.decl
  1934. // CHECK:STDOUT: }
  1935. // CHECK:STDOUT: %As.decl: %As.type.b51 = interface_decl @As [concrete = constants.%As.generic] {
  1936. // CHECK:STDOUT: %Dest.patt: %pattern_type.98f = symbolic_binding_pattern Dest, 0
  1937. // CHECK:STDOUT: } {
  1938. // CHECK:STDOUT: %Dest.loc9_14.1: type = bind_symbolic_name Dest, 0 [symbolic = %Dest.loc9_14.2 (constants.%Dest)]
  1939. // CHECK:STDOUT: }
  1940. // CHECK:STDOUT: %ImplicitAs.decl: %ImplicitAs.type.96f = interface_decl @ImplicitAs [concrete = constants.%ImplicitAs.generic] {
  1941. // CHECK:STDOUT: %Dest.patt: %pattern_type.98f = symbolic_binding_pattern Dest, 0
  1942. // CHECK:STDOUT: } {
  1943. // CHECK:STDOUT: %Dest.loc13_22.1: type = bind_symbolic_name Dest, 0 [symbolic = %Dest.loc13_22.2 (constants.%Dest)]
  1944. // CHECK:STDOUT: }
  1945. // CHECK:STDOUT: %BitAnd.decl: type = interface_decl @BitAnd [concrete = constants.%BitAnd.type] {} {}
  1946. // CHECK:STDOUT: impl_decl @impl [concrete] {
  1947. // CHECK:STDOUT: %T.patt: %pattern_type.98f = symbolic_binding_pattern T, 0
  1948. // CHECK:STDOUT: } {
  1949. // CHECK:STDOUT: %T.ref: type = name_ref T, %T.loc21_14.1 [symbolic = %T.loc21_14.2 (constants.%T)]
  1950. // CHECK:STDOUT: %BitAnd.ref: type = name_ref BitAnd, file.%BitAnd.decl [concrete = constants.%BitAnd.type]
  1951. // CHECK:STDOUT: %T.loc21_14.1: type = bind_symbolic_name T, 0 [symbolic = %T.loc21_14.2 (constants.%T)]
  1952. // CHECK:STDOUT: }
  1953. // CHECK:STDOUT: %BitAnd.impl_witness_table = impl_witness_table (@impl.%Op.decl), @impl [concrete]
  1954. // CHECK:STDOUT: %BitAnd.impl_witness: <witness> = impl_witness %BitAnd.impl_witness_table, @impl(constants.%T) [symbolic = @impl.%BitAnd.impl_witness (constants.%BitAnd.impl_witness)]
  1955. // CHECK:STDOUT: }
  1956. // CHECK:STDOUT:
  1957. // CHECK:STDOUT: generic interface @As(%Dest.loc9_14.1: type) {
  1958. // CHECK:STDOUT: %Dest.loc9_14.2: type = bind_symbolic_name Dest, 0 [symbolic = %Dest.loc9_14.2 (constants.%Dest)]
  1959. // CHECK:STDOUT:
  1960. // CHECK:STDOUT: !definition:
  1961. // CHECK:STDOUT: %As.type: type = facet_type <@As, @As(%Dest.loc9_14.2)> [symbolic = %As.type (constants.%As.type.8ba)]
  1962. // CHECK:STDOUT: %Self.2: @As.%As.type (%As.type.8ba) = bind_symbolic_name Self, 1 [symbolic = %Self.2 (constants.%Self.b4e)]
  1963. // CHECK:STDOUT: %Convert.type: type = fn_type @Convert.1, @As(%Dest.loc9_14.2) [symbolic = %Convert.type (constants.%Convert.type.ad1)]
  1964. // CHECK:STDOUT: %Convert: @As.%Convert.type (%Convert.type.ad1) = struct_value () [symbolic = %Convert (constants.%Convert.0ed)]
  1965. // CHECK:STDOUT: %As.assoc_type: type = assoc_entity_type @As, @As(%Dest.loc9_14.2) [symbolic = %As.assoc_type (constants.%As.assoc_type)]
  1966. // CHECK:STDOUT: %assoc0.loc10_35.2: @As.%As.assoc_type (%As.assoc_type) = assoc_entity element0, %Convert.decl [symbolic = %assoc0.loc10_35.2 (constants.%assoc0.1d5)]
  1967. // CHECK:STDOUT:
  1968. // CHECK:STDOUT: interface {
  1969. // CHECK:STDOUT: %Self.1: @As.%As.type (%As.type.8ba) = bind_symbolic_name Self, 1 [symbolic = %Self.2 (constants.%Self.b4e)]
  1970. // CHECK:STDOUT: %Convert.decl: @As.%Convert.type (%Convert.type.ad1) = fn_decl @Convert.1 [symbolic = @As.%Convert (constants.%Convert.0ed)] {
  1971. // CHECK:STDOUT: %self.patt: @Convert.1.%pattern_type.loc10_14 (%pattern_type.947) = binding_pattern self
  1972. // CHECK:STDOUT: %self.param_patt: @Convert.1.%pattern_type.loc10_14 (%pattern_type.947) = value_param_pattern %self.patt, call_param0
  1973. // CHECK:STDOUT: %return.patt: @Convert.1.%pattern_type.loc10_28 (%pattern_type.7dcd0a.1) = return_slot_pattern
  1974. // CHECK:STDOUT: %return.param_patt: @Convert.1.%pattern_type.loc10_28 (%pattern_type.7dcd0a.1) = out_param_pattern %return.patt, call_param1
  1975. // CHECK:STDOUT: } {
  1976. // CHECK:STDOUT: %Dest.ref: type = name_ref Dest, @As.%Dest.loc9_14.1 [symbolic = %Dest (constants.%Dest)]
  1977. // CHECK:STDOUT: %self.param: @Convert.1.%Self.as_type.loc10_20.1 (%Self.as_type.7f0) = value_param call_param0
  1978. // CHECK:STDOUT: %.loc10_20.1: type = splice_block %.loc10_20.3 [symbolic = %Self.as_type.loc10_20.1 (constants.%Self.as_type.7f0)] {
  1979. // CHECK:STDOUT: %.loc10_20.2: @Convert.1.%As.type (%As.type.8ba) = specific_constant @As.%Self.1, @As(constants.%Dest) [symbolic = %Self (constants.%Self.b4e)]
  1980. // CHECK:STDOUT: %Self.ref: @Convert.1.%As.type (%As.type.8ba) = name_ref Self, %.loc10_20.2 [symbolic = %Self (constants.%Self.b4e)]
  1981. // CHECK:STDOUT: %Self.as_type.loc10_20.2: type = facet_access_type %Self.ref [symbolic = %Self.as_type.loc10_20.1 (constants.%Self.as_type.7f0)]
  1982. // CHECK:STDOUT: %.loc10_20.3: type = converted %Self.ref, %Self.as_type.loc10_20.2 [symbolic = %Self.as_type.loc10_20.1 (constants.%Self.as_type.7f0)]
  1983. // CHECK:STDOUT: }
  1984. // CHECK:STDOUT: %self: @Convert.1.%Self.as_type.loc10_20.1 (%Self.as_type.7f0) = bind_name self, %self.param
  1985. // CHECK:STDOUT: %return.param: ref @Convert.1.%Dest (%Dest) = out_param call_param1
  1986. // CHECK:STDOUT: %return: ref @Convert.1.%Dest (%Dest) = return_slot %return.param
  1987. // CHECK:STDOUT: }
  1988. // CHECK:STDOUT: %assoc0.loc10_35.1: @As.%As.assoc_type (%As.assoc_type) = assoc_entity element0, %Convert.decl [symbolic = %assoc0.loc10_35.2 (constants.%assoc0.1d5)]
  1989. // CHECK:STDOUT:
  1990. // CHECK:STDOUT: !members:
  1991. // CHECK:STDOUT: .Self = %Self.1
  1992. // CHECK:STDOUT: .Dest = <poisoned>
  1993. // CHECK:STDOUT: .Convert = %assoc0.loc10_35.1
  1994. // CHECK:STDOUT: witness = (%Convert.decl)
  1995. // CHECK:STDOUT: }
  1996. // CHECK:STDOUT: }
  1997. // CHECK:STDOUT:
  1998. // CHECK:STDOUT: generic interface @ImplicitAs(%Dest.loc13_22.1: type) {
  1999. // CHECK:STDOUT: %Dest.loc13_22.2: type = bind_symbolic_name Dest, 0 [symbolic = %Dest.loc13_22.2 (constants.%Dest)]
  2000. // CHECK:STDOUT:
  2001. // CHECK:STDOUT: !definition:
  2002. // CHECK:STDOUT: %ImplicitAs.type: type = facet_type <@ImplicitAs, @ImplicitAs(%Dest.loc13_22.2)> [symbolic = %ImplicitAs.type (constants.%ImplicitAs.type.07f)]
  2003. // CHECK:STDOUT: %Self.2: @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.07f) = bind_symbolic_name Self, 1 [symbolic = %Self.2 (constants.%Self.0f3)]
  2004. // CHECK:STDOUT: %Convert.type: type = fn_type @Convert.2, @ImplicitAs(%Dest.loc13_22.2) [symbolic = %Convert.type (constants.%Convert.type.4cf)]
  2005. // CHECK:STDOUT: %Convert: @ImplicitAs.%Convert.type (%Convert.type.4cf) = struct_value () [symbolic = %Convert (constants.%Convert.147)]
  2006. // CHECK:STDOUT: %ImplicitAs.assoc_type: type = assoc_entity_type @ImplicitAs, @ImplicitAs(%Dest.loc13_22.2) [symbolic = %ImplicitAs.assoc_type (constants.%ImplicitAs.assoc_type)]
  2007. // CHECK:STDOUT: %assoc0.loc14_35.2: @ImplicitAs.%ImplicitAs.assoc_type (%ImplicitAs.assoc_type) = assoc_entity element0, %Convert.decl [symbolic = %assoc0.loc14_35.2 (constants.%assoc0.8f8)]
  2008. // CHECK:STDOUT:
  2009. // CHECK:STDOUT: interface {
  2010. // CHECK:STDOUT: %Self.1: @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.07f) = bind_symbolic_name Self, 1 [symbolic = %Self.2 (constants.%Self.0f3)]
  2011. // CHECK:STDOUT: %Convert.decl: @ImplicitAs.%Convert.type (%Convert.type.4cf) = fn_decl @Convert.2 [symbolic = @ImplicitAs.%Convert (constants.%Convert.147)] {
  2012. // CHECK:STDOUT: %self.patt: @Convert.2.%pattern_type.loc14_14 (%pattern_type.a93) = binding_pattern self
  2013. // CHECK:STDOUT: %self.param_patt: @Convert.2.%pattern_type.loc14_14 (%pattern_type.a93) = value_param_pattern %self.patt, call_param0
  2014. // CHECK:STDOUT: %return.patt: @Convert.2.%pattern_type.loc14_28 (%pattern_type.7dcd0a.1) = return_slot_pattern
  2015. // CHECK:STDOUT: %return.param_patt: @Convert.2.%pattern_type.loc14_28 (%pattern_type.7dcd0a.1) = out_param_pattern %return.patt, call_param1
  2016. // CHECK:STDOUT: } {
  2017. // CHECK:STDOUT: %Dest.ref: type = name_ref Dest, @ImplicitAs.%Dest.loc13_22.1 [symbolic = %Dest (constants.%Dest)]
  2018. // CHECK:STDOUT: %self.param: @Convert.2.%Self.as_type.loc14_20.1 (%Self.as_type.419) = value_param call_param0
  2019. // CHECK:STDOUT: %.loc14_20.1: type = splice_block %.loc14_20.3 [symbolic = %Self.as_type.loc14_20.1 (constants.%Self.as_type.419)] {
  2020. // CHECK:STDOUT: %.loc14_20.2: @Convert.2.%ImplicitAs.type (%ImplicitAs.type.07f) = specific_constant @ImplicitAs.%Self.1, @ImplicitAs(constants.%Dest) [symbolic = %Self (constants.%Self.0f3)]
  2021. // CHECK:STDOUT: %Self.ref: @Convert.2.%ImplicitAs.type (%ImplicitAs.type.07f) = name_ref Self, %.loc14_20.2 [symbolic = %Self (constants.%Self.0f3)]
  2022. // CHECK:STDOUT: %Self.as_type.loc14_20.2: type = facet_access_type %Self.ref [symbolic = %Self.as_type.loc14_20.1 (constants.%Self.as_type.419)]
  2023. // CHECK:STDOUT: %.loc14_20.3: type = converted %Self.ref, %Self.as_type.loc14_20.2 [symbolic = %Self.as_type.loc14_20.1 (constants.%Self.as_type.419)]
  2024. // CHECK:STDOUT: }
  2025. // CHECK:STDOUT: %self: @Convert.2.%Self.as_type.loc14_20.1 (%Self.as_type.419) = bind_name self, %self.param
  2026. // CHECK:STDOUT: %return.param: ref @Convert.2.%Dest (%Dest) = out_param call_param1
  2027. // CHECK:STDOUT: %return: ref @Convert.2.%Dest (%Dest) = return_slot %return.param
  2028. // CHECK:STDOUT: }
  2029. // CHECK:STDOUT: %assoc0.loc14_35.1: @ImplicitAs.%ImplicitAs.assoc_type (%ImplicitAs.assoc_type) = assoc_entity element0, %Convert.decl [symbolic = %assoc0.loc14_35.2 (constants.%assoc0.8f8)]
  2030. // CHECK:STDOUT:
  2031. // CHECK:STDOUT: !members:
  2032. // CHECK:STDOUT: .Self = %Self.1
  2033. // CHECK:STDOUT: .Dest = <poisoned>
  2034. // CHECK:STDOUT: .Convert = %assoc0.loc14_35.1
  2035. // CHECK:STDOUT: witness = (%Convert.decl)
  2036. // CHECK:STDOUT: }
  2037. // CHECK:STDOUT: }
  2038. // CHECK:STDOUT:
  2039. // CHECK:STDOUT: interface @BitAnd {
  2040. // CHECK:STDOUT: %Self: %BitAnd.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.e44]
  2041. // CHECK:STDOUT: %Op.decl: %Op.type.613 = fn_decl @Op.1 [concrete = constants.%Op.d98] {
  2042. // CHECK:STDOUT: %self.patt: @Op.1.%pattern_type (%pattern_type.a80) = binding_pattern self
  2043. // CHECK:STDOUT: %self.param_patt: @Op.1.%pattern_type (%pattern_type.a80) = value_param_pattern %self.patt, call_param0
  2044. // CHECK:STDOUT: %other.patt: @Op.1.%pattern_type (%pattern_type.a80) = binding_pattern other
  2045. // CHECK:STDOUT: %other.param_patt: @Op.1.%pattern_type (%pattern_type.a80) = value_param_pattern %other.patt, call_param1
  2046. // CHECK:STDOUT: %return.patt: @Op.1.%pattern_type (%pattern_type.a80) = return_slot_pattern
  2047. // CHECK:STDOUT: %return.param_patt: @Op.1.%pattern_type (%pattern_type.a80) = out_param_pattern %return.patt, call_param2
  2048. // CHECK:STDOUT: } {
  2049. // CHECK:STDOUT: %Self.ref.loc18_37: %BitAnd.type = name_ref Self, @BitAnd.%Self [symbolic = %Self (constants.%Self.e44)]
  2050. // CHECK:STDOUT: %Self.as_type.loc18_37: type = facet_access_type %Self.ref.loc18_37 [symbolic = %Self.as_type.loc18_15.1 (constants.%Self.as_type.560)]
  2051. // CHECK:STDOUT: %.loc18_37: type = converted %Self.ref.loc18_37, %Self.as_type.loc18_37 [symbolic = %Self.as_type.loc18_15.1 (constants.%Self.as_type.560)]
  2052. // CHECK:STDOUT: %self.param: @Op.1.%Self.as_type.loc18_15.1 (%Self.as_type.560) = value_param call_param0
  2053. // CHECK:STDOUT: %.loc18_15.1: type = splice_block %.loc18_15.2 [symbolic = %Self.as_type.loc18_15.1 (constants.%Self.as_type.560)] {
  2054. // CHECK:STDOUT: %Self.ref.loc18_15: %BitAnd.type = name_ref Self, @BitAnd.%Self [symbolic = %Self (constants.%Self.e44)]
  2055. // CHECK:STDOUT: %Self.as_type.loc18_15.2: type = facet_access_type %Self.ref.loc18_15 [symbolic = %Self.as_type.loc18_15.1 (constants.%Self.as_type.560)]
  2056. // CHECK:STDOUT: %.loc18_15.2: type = converted %Self.ref.loc18_15, %Self.as_type.loc18_15.2 [symbolic = %Self.as_type.loc18_15.1 (constants.%Self.as_type.560)]
  2057. // CHECK:STDOUT: }
  2058. // CHECK:STDOUT: %self: @Op.1.%Self.as_type.loc18_15.1 (%Self.as_type.560) = bind_name self, %self.param
  2059. // CHECK:STDOUT: %other.param: @Op.1.%Self.as_type.loc18_15.1 (%Self.as_type.560) = value_param call_param1
  2060. // CHECK:STDOUT: %.loc18_28.1: type = splice_block %.loc18_28.2 [symbolic = %Self.as_type.loc18_15.1 (constants.%Self.as_type.560)] {
  2061. // CHECK:STDOUT: %Self.ref.loc18_28: %BitAnd.type = name_ref Self, @BitAnd.%Self [symbolic = %Self (constants.%Self.e44)]
  2062. // CHECK:STDOUT: %Self.as_type.loc18_28: type = facet_access_type %Self.ref.loc18_28 [symbolic = %Self.as_type.loc18_15.1 (constants.%Self.as_type.560)]
  2063. // CHECK:STDOUT: %.loc18_28.2: type = converted %Self.ref.loc18_28, %Self.as_type.loc18_28 [symbolic = %Self.as_type.loc18_15.1 (constants.%Self.as_type.560)]
  2064. // CHECK:STDOUT: }
  2065. // CHECK:STDOUT: %other: @Op.1.%Self.as_type.loc18_15.1 (%Self.as_type.560) = bind_name other, %other.param
  2066. // CHECK:STDOUT: %return.param: ref @Op.1.%Self.as_type.loc18_15.1 (%Self.as_type.560) = out_param call_param2
  2067. // CHECK:STDOUT: %return: ref @Op.1.%Self.as_type.loc18_15.1 (%Self.as_type.560) = return_slot %return.param
  2068. // CHECK:STDOUT: }
  2069. // CHECK:STDOUT: %assoc0: %BitAnd.assoc_type = assoc_entity element0, %Op.decl [concrete = constants.%assoc0.220]
  2070. // CHECK:STDOUT:
  2071. // CHECK:STDOUT: !members:
  2072. // CHECK:STDOUT: .Self = %Self
  2073. // CHECK:STDOUT: .Op = %assoc0
  2074. // CHECK:STDOUT: witness = (%Op.decl)
  2075. // CHECK:STDOUT: }
  2076. // CHECK:STDOUT:
  2077. // CHECK:STDOUT: generic impl @impl(%T.loc21_14.1: type) {
  2078. // CHECK:STDOUT: %T.loc21_14.2: type = bind_symbolic_name T, 0 [symbolic = %T.loc21_14.2 (constants.%T)]
  2079. // CHECK:STDOUT: %BitAnd.impl_witness: <witness> = impl_witness file.%BitAnd.impl_witness_table, @impl(%T.loc21_14.2) [symbolic = %BitAnd.impl_witness (constants.%BitAnd.impl_witness)]
  2080. // CHECK:STDOUT:
  2081. // CHECK:STDOUT: !definition:
  2082. // CHECK:STDOUT: %Op.type: type = fn_type @Op.2, @impl(%T.loc21_14.2) [symbolic = %Op.type (constants.%Op.type.28d)]
  2083. // CHECK:STDOUT: %Op: @impl.%Op.type (%Op.type.28d) = struct_value () [symbolic = %Op (constants.%Op.902)]
  2084. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type %T.loc21_14.2 [symbolic = %require_complete (constants.%require_complete)]
  2085. // CHECK:STDOUT:
  2086. // CHECK:STDOUT: impl: %T.ref as %BitAnd.ref {
  2087. // CHECK:STDOUT: %Op.decl: @impl.%Op.type (%Op.type.28d) = fn_decl @Op.2 [symbolic = @impl.%Op (constants.%Op.902)] {
  2088. // CHECK:STDOUT: %self.patt: @Op.2.%pattern_type (%pattern_type.7dcd0a.2) = binding_pattern self
  2089. // CHECK:STDOUT: %self.param_patt: @Op.2.%pattern_type (%pattern_type.7dcd0a.2) = value_param_pattern %self.patt, call_param0
  2090. // CHECK:STDOUT: %other.patt: @Op.2.%pattern_type (%pattern_type.7dcd0a.2) = binding_pattern other
  2091. // CHECK:STDOUT: %other.param_patt: @Op.2.%pattern_type (%pattern_type.7dcd0a.2) = value_param_pattern %other.patt, call_param1
  2092. // CHECK:STDOUT: %return.patt: @Op.2.%pattern_type (%pattern_type.7dcd0a.2) = return_slot_pattern
  2093. // CHECK:STDOUT: %return.param_patt: @Op.2.%pattern_type (%pattern_type.7dcd0a.2) = out_param_pattern %return.patt, call_param2
  2094. // CHECK:STDOUT: } {
  2095. // CHECK:STDOUT: %Self.ref.loc22_37: type = name_ref Self, @impl.%T.ref [symbolic = %T (constants.%T)]
  2096. // CHECK:STDOUT: %self.param: @Op.2.%T (%T) = value_param call_param0
  2097. // CHECK:STDOUT: %Self.ref.loc22_15: type = name_ref Self, @impl.%T.ref [symbolic = %T (constants.%T)]
  2098. // CHECK:STDOUT: %self: @Op.2.%T (%T) = bind_name self, %self.param
  2099. // CHECK:STDOUT: %other.param: @Op.2.%T (%T) = value_param call_param1
  2100. // CHECK:STDOUT: %Self.ref.loc22_28: type = name_ref Self, @impl.%T.ref [symbolic = %T (constants.%T)]
  2101. // CHECK:STDOUT: %other: @Op.2.%T (%T) = bind_name other, %other.param
  2102. // CHECK:STDOUT: %return.param: ref @Op.2.%T (%T) = out_param call_param2
  2103. // CHECK:STDOUT: %return: ref @Op.2.%T (%T) = return_slot %return.param
  2104. // CHECK:STDOUT: }
  2105. // CHECK:STDOUT:
  2106. // CHECK:STDOUT: !members:
  2107. // CHECK:STDOUT: .Op = %Op.decl
  2108. // CHECK:STDOUT: witness = file.%BitAnd.impl_witness
  2109. // CHECK:STDOUT: }
  2110. // CHECK:STDOUT: }
  2111. // CHECK:STDOUT:
  2112. // CHECK:STDOUT: generic fn @Convert.1(@As.%Dest.loc9_14.1: type, @As.%Self.1: @As.%As.type (%As.type.8ba)) {
  2113. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic = %Dest (constants.%Dest)]
  2114. // CHECK:STDOUT: %As.type: type = facet_type <@As, @As(%Dest)> [symbolic = %As.type (constants.%As.type.8ba)]
  2115. // CHECK:STDOUT: %Self: @Convert.1.%As.type (%As.type.8ba) = bind_symbolic_name Self, 1 [symbolic = %Self (constants.%Self.b4e)]
  2116. // CHECK:STDOUT: %Self.as_type.loc10_20.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc10_20.1 (constants.%Self.as_type.7f0)]
  2117. // CHECK:STDOUT: %pattern_type.loc10_14: type = pattern_type %Self.as_type.loc10_20.1 [symbolic = %pattern_type.loc10_14 (constants.%pattern_type.947)]
  2118. // CHECK:STDOUT: %pattern_type.loc10_28: type = pattern_type %Dest [symbolic = %pattern_type.loc10_28 (constants.%pattern_type.7dcd0a.1)]
  2119. // CHECK:STDOUT:
  2120. // CHECK:STDOUT: fn(%self.param: @Convert.1.%Self.as_type.loc10_20.1 (%Self.as_type.7f0)) -> @Convert.1.%Dest (%Dest);
  2121. // CHECK:STDOUT: }
  2122. // CHECK:STDOUT:
  2123. // CHECK:STDOUT: generic fn @Convert.2(@ImplicitAs.%Dest.loc13_22.1: type, @ImplicitAs.%Self.1: @ImplicitAs.%ImplicitAs.type (%ImplicitAs.type.07f)) {
  2124. // CHECK:STDOUT: %Dest: type = bind_symbolic_name Dest, 0 [symbolic = %Dest (constants.%Dest)]
  2125. // CHECK:STDOUT: %ImplicitAs.type: type = facet_type <@ImplicitAs, @ImplicitAs(%Dest)> [symbolic = %ImplicitAs.type (constants.%ImplicitAs.type.07f)]
  2126. // CHECK:STDOUT: %Self: @Convert.2.%ImplicitAs.type (%ImplicitAs.type.07f) = bind_symbolic_name Self, 1 [symbolic = %Self (constants.%Self.0f3)]
  2127. // CHECK:STDOUT: %Self.as_type.loc14_20.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc14_20.1 (constants.%Self.as_type.419)]
  2128. // CHECK:STDOUT: %pattern_type.loc14_14: type = pattern_type %Self.as_type.loc14_20.1 [symbolic = %pattern_type.loc14_14 (constants.%pattern_type.a93)]
  2129. // CHECK:STDOUT: %pattern_type.loc14_28: type = pattern_type %Dest [symbolic = %pattern_type.loc14_28 (constants.%pattern_type.7dcd0a.1)]
  2130. // CHECK:STDOUT:
  2131. // CHECK:STDOUT: fn(%self.param: @Convert.2.%Self.as_type.loc14_20.1 (%Self.as_type.419)) -> @Convert.2.%Dest (%Dest);
  2132. // CHECK:STDOUT: }
  2133. // CHECK:STDOUT:
  2134. // CHECK:STDOUT: generic fn @Op.1(@BitAnd.%Self: %BitAnd.type) {
  2135. // CHECK:STDOUT: %Self: %BitAnd.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self.e44)]
  2136. // CHECK:STDOUT: %Self.as_type.loc18_15.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc18_15.1 (constants.%Self.as_type.560)]
  2137. // CHECK:STDOUT: %pattern_type: type = pattern_type %Self.as_type.loc18_15.1 [symbolic = %pattern_type (constants.%pattern_type.a80)]
  2138. // CHECK:STDOUT:
  2139. // CHECK:STDOUT: fn(%self.param: @Op.1.%Self.as_type.loc18_15.1 (%Self.as_type.560), %other.param: @Op.1.%Self.as_type.loc18_15.1 (%Self.as_type.560)) -> @Op.1.%Self.as_type.loc18_15.1 (%Self.as_type.560);
  2140. // CHECK:STDOUT: }
  2141. // CHECK:STDOUT:
  2142. // CHECK:STDOUT: generic fn @Op.2(@impl.%T.loc21_14.1: type) {
  2143. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic = %T (constants.%T)]
  2144. // CHECK:STDOUT: %pattern_type: type = pattern_type %T [symbolic = %pattern_type (constants.%pattern_type.7dcd0a.2)]
  2145. // CHECK:STDOUT:
  2146. // CHECK:STDOUT: !definition:
  2147. // CHECK:STDOUT:
  2148. // CHECK:STDOUT: fn(%self.param: @Op.2.%T (%T), %other.param: @Op.2.%T (%T)) -> @Op.2.%T (%T) = "type.and";
  2149. // CHECK:STDOUT: }
  2150. // CHECK:STDOUT:
  2151. // CHECK:STDOUT: specific @As(constants.%Dest) {
  2152. // CHECK:STDOUT: %Dest.loc9_14.2 => constants.%Dest
  2153. // CHECK:STDOUT: }
  2154. // CHECK:STDOUT:
  2155. // CHECK:STDOUT: specific @Convert.1(constants.%Dest, constants.%Self.b4e) {
  2156. // CHECK:STDOUT: %Dest => constants.%Dest
  2157. // CHECK:STDOUT: %As.type => constants.%As.type.8ba
  2158. // CHECK:STDOUT: %Self => constants.%Self.b4e
  2159. // CHECK:STDOUT: %Self.as_type.loc10_20.1 => constants.%Self.as_type.7f0
  2160. // CHECK:STDOUT: %pattern_type.loc10_14 => constants.%pattern_type.947
  2161. // CHECK:STDOUT: %pattern_type.loc10_28 => constants.%pattern_type.7dcd0a.1
  2162. // CHECK:STDOUT: }
  2163. // CHECK:STDOUT:
  2164. // CHECK:STDOUT: specific @As(@Convert.1.%Dest) {}
  2165. // CHECK:STDOUT:
  2166. // CHECK:STDOUT: specific @As(%Dest.loc9_14.2) {}
  2167. // CHECK:STDOUT:
  2168. // CHECK:STDOUT: specific @ImplicitAs(constants.%Dest) {
  2169. // CHECK:STDOUT: %Dest.loc13_22.2 => constants.%Dest
  2170. // CHECK:STDOUT: }
  2171. // CHECK:STDOUT:
  2172. // CHECK:STDOUT: specific @Convert.2(constants.%Dest, constants.%Self.0f3) {
  2173. // CHECK:STDOUT: %Dest => constants.%Dest
  2174. // CHECK:STDOUT: %ImplicitAs.type => constants.%ImplicitAs.type.07f
  2175. // CHECK:STDOUT: %Self => constants.%Self.0f3
  2176. // CHECK:STDOUT: %Self.as_type.loc14_20.1 => constants.%Self.as_type.419
  2177. // CHECK:STDOUT: %pattern_type.loc14_14 => constants.%pattern_type.a93
  2178. // CHECK:STDOUT: %pattern_type.loc14_28 => constants.%pattern_type.7dcd0a.1
  2179. // CHECK:STDOUT: }
  2180. // CHECK:STDOUT:
  2181. // CHECK:STDOUT: specific @ImplicitAs(@Convert.2.%Dest) {}
  2182. // CHECK:STDOUT:
  2183. // CHECK:STDOUT: specific @ImplicitAs(%Dest.loc13_22.2) {}
  2184. // CHECK:STDOUT:
  2185. // CHECK:STDOUT: specific @Op.1(constants.%Self.e44) {
  2186. // CHECK:STDOUT: %Self => constants.%Self.e44
  2187. // CHECK:STDOUT: %Self.as_type.loc18_15.1 => constants.%Self.as_type.560
  2188. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.a80
  2189. // CHECK:STDOUT: }
  2190. // CHECK:STDOUT:
  2191. // CHECK:STDOUT: specific @impl(constants.%T) {
  2192. // CHECK:STDOUT: %T.loc21_14.2 => constants.%T
  2193. // CHECK:STDOUT: %BitAnd.impl_witness => constants.%BitAnd.impl_witness
  2194. // CHECK:STDOUT: }
  2195. // CHECK:STDOUT:
  2196. // CHECK:STDOUT: specific @impl(%T.loc21_14.2) {}
  2197. // CHECK:STDOUT:
  2198. // CHECK:STDOUT: specific @Op.2(constants.%T) {
  2199. // CHECK:STDOUT: %T => constants.%T
  2200. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.7dcd0a.2
  2201. // CHECK:STDOUT: }
  2202. // CHECK:STDOUT:
  2203. // CHECK:STDOUT: specific @Op.1(constants.%BitAnd.facet) {
  2204. // CHECK:STDOUT: %Self => constants.%BitAnd.facet
  2205. // CHECK:STDOUT: %Self.as_type.loc18_15.1 => constants.%T
  2206. // CHECK:STDOUT: %pattern_type => constants.%pattern_type.7dcd0a.2
  2207. // CHECK:STDOUT: }
  2208. // CHECK:STDOUT: