use_assoc_const.carbon 255 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // AUTOUPDATE
  6. // TIP: To test this file alone, run:
  7. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/impl/use_assoc_const.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/impl/use_assoc_const.carbon
  10. // --- associated_type_in_method_signature.carbon
  11. library "[[@TEST_NAME]]";
  12. interface J {
  13. let U:! type;
  14. fn F[self: Self](u: U) -> U;
  15. }
  16. impl () as J where .U = i32 {
  17. fn F[self: Self](u: i32) -> i32 { return u + 2; }
  18. }
  19. fn CallMethod(x: ()) -> i32 {
  20. return x.(J.F)(40);
  21. }
  22. class C {
  23. // This allows the type to be copyable so it can be returned.
  24. adapt {};
  25. }
  26. impl C as J where .U = C {
  27. fn F[self: Self](u: C) -> C { return self; }
  28. }
  29. // --- associated_type_in_function_signature.carbon
  30. library "[[@TEST_NAME]]";
  31. interface J {
  32. let U:! type;
  33. fn F(u: U) -> U;
  34. }
  35. class D { }
  36. impl D as J where .U = i32 {
  37. fn F(u: i32) -> i32 { return u + 3; }
  38. }
  39. fn CallFunction() -> i32 {
  40. return D.(J.F)(4);
  41. }
  42. // --- extend_impl_with_associated_type_in_signature.carbon
  43. library "[[@TEST_NAME]]";
  44. interface J {
  45. let U:! type;
  46. fn F(u: U) -> U;
  47. fn G[self: Self](v: U) -> U;
  48. }
  49. class E {
  50. extend impl as J where .U = i32 {
  51. fn F(u: i32) -> i32 {
  52. return u + 1;
  53. }
  54. fn G[self: Self](v: i32) -> i32 {
  55. return v + 2;
  56. }
  57. }
  58. }
  59. fn CallBoth(e: E) -> i32 {
  60. return e.F(2) + e.G(3) + E.F(4) + e.(E.G)(5) + e.(J.G)(6);
  61. }
  62. fn GenericCallF[T:! J](t: T, u: T.U) -> T.U {
  63. return t.F(u);
  64. }
  65. fn CallGeneric(e: E) -> i32 {
  66. return GenericCallF(e, 2);
  67. }
  68. // --- use_constraint_on_associated_type.carbon
  69. library "[[@TEST_NAME]]";
  70. interface J {
  71. let U:! Core.Add;
  72. fn F(u: U) -> U;
  73. }
  74. fn GenericAddResult[T:! J](t: T, u: T.U) -> T.U {
  75. return t.F(u) + T.F(u);
  76. }
  77. // --- interface_qualified.carbon
  78. library "[[@TEST_NAME]]";
  79. interface J {
  80. let U:! type;
  81. fn G[self: Self](v: U) -> U;
  82. }
  83. fn GenericCallInterfaceQualified[T:! J](t: T, u: T.U) -> T.U {
  84. return t.(J.G)(u);
  85. }
  86. // --- fail_todo_use_where.carbon
  87. library "[[@TEST_NAME]]";
  88. interface J {
  89. let U:! type;
  90. fn F(u: U) -> U;
  91. }
  92. fn GenericCallFI32[T:! J where .U = i32](t: T) -> i32 {
  93. // CHECK:STDERR: fail_todo_use_where.carbon:[[@LINE+17]]:14: error: cannot implicitly convert expression of type `Core.IntLiteral` to `T.(J.U)` [ConversionFailure]
  94. // CHECK:STDERR: return t.F(2);
  95. // CHECK:STDERR: ^
  96. // CHECK:STDERR: fail_todo_use_where.carbon:[[@LINE+14]]:14: note: type `Core.IntLiteral` does not implement interface `Core.ImplicitAs(T.(J.U))` [MissingImplInMemberAccessNote]
  97. // CHECK:STDERR: return t.F(2);
  98. // CHECK:STDERR: ^
  99. // CHECK:STDERR: fail_todo_use_where.carbon:[[@LINE-10]]:8: note: initializing function parameter [InCallToFunctionParam]
  100. // CHECK:STDERR: fn F(u: U) -> U;
  101. // CHECK:STDERR: ^~~~
  102. // CHECK:STDERR:
  103. // CHECK:STDERR: fail_todo_use_where.carbon:[[@LINE+7]]:3: error: cannot implicitly convert expression of type `T.(J.U)` to `i32` [ConversionFailure]
  104. // CHECK:STDERR: return t.F(2);
  105. // CHECK:STDERR: ^~~~~~~~~~~~~~
  106. // CHECK:STDERR: fail_todo_use_where.carbon:[[@LINE+4]]:3: note: type `T.(J.U)` does not implement interface `Core.ImplicitAs(i32)` [MissingImplInMemberAccessNote]
  107. // CHECK:STDERR: return t.F(2);
  108. // CHECK:STDERR: ^~~~~~~~~~~~~~
  109. // CHECK:STDERR:
  110. return t.F(2);
  111. }
  112. // --- fail_todo_use_associated_constant_in_impl.carbon
  113. library "[[@TEST_NAME]]";
  114. interface J {
  115. let U:! type;
  116. fn F(u: U) -> U;
  117. }
  118. class E {
  119. extend impl as J where .U = i32 {
  120. // CHECK:STDERR: fail_todo_use_associated_constant_in_impl.carbon:[[@LINE+14]]:13: error: cannot implicitly convert non-type value of type `<associated entity in J>` to `type` [ConversionFailureNonTypeToFacet]
  121. // CHECK:STDERR: fn F(u: U) -> U {
  122. // CHECK:STDERR: ^
  123. // CHECK:STDERR: fail_todo_use_associated_constant_in_impl.carbon:[[@LINE+11]]:13: note: type `<associated entity in J>` does not implement interface `Core.ImplicitAs(type)` [MissingImplInMemberAccessNote]
  124. // CHECK:STDERR: fn F(u: U) -> U {
  125. // CHECK:STDERR: ^
  126. // CHECK:STDERR:
  127. // CHECK:STDERR: fail_todo_use_associated_constant_in_impl.carbon:[[@LINE+7]]:19: error: cannot implicitly convert non-type value of type `<associated entity in J>` to `type` [ConversionFailureNonTypeToFacet]
  128. // CHECK:STDERR: fn F(u: U) -> U {
  129. // CHECK:STDERR: ^
  130. // CHECK:STDERR: fail_todo_use_associated_constant_in_impl.carbon:[[@LINE+4]]:19: note: type `<associated entity in J>` does not implement interface `Core.ImplicitAs(type)` [MissingImplInMemberAccessNote]
  131. // CHECK:STDERR: fn F(u: U) -> U {
  132. // CHECK:STDERR: ^
  133. // CHECK:STDERR:
  134. fn F(u: U) -> U {
  135. return u + 1;
  136. }
  137. }
  138. }
  139. // --- fail_todo_self_period_associated_type.carbon
  140. library "[[@TEST_NAME]]";
  141. interface J2 {
  142. let U2:! type;
  143. // CHECK:STDERR: fail_todo_self_period_associated_type.carbon:[[@LINE+14]]:23: error: member access into object of incomplete type `J2` [IncompleteTypeInMemberAccess]
  144. // CHECK:STDERR: fn F[self: Self](z: Self.U2) -> Self.U2;
  145. // CHECK:STDERR: ^~~~
  146. // CHECK:STDERR: fail_todo_self_period_associated_type.carbon:[[@LINE-5]]:1: note: interface is currently being defined [InterfaceIncompleteWithinDefinition]
  147. // CHECK:STDERR: interface J2 {
  148. // CHECK:STDERR: ^~~~~~~~~~~~~~
  149. // CHECK:STDERR:
  150. // CHECK:STDERR: fail_todo_self_period_associated_type.carbon:[[@LINE+7]]:35: error: member access into object of incomplete type `J2` [IncompleteTypeInMemberAccess]
  151. // CHECK:STDERR: fn F[self: Self](z: Self.U2) -> Self.U2;
  152. // CHECK:STDERR: ^~~~
  153. // CHECK:STDERR: fail_todo_self_period_associated_type.carbon:[[@LINE-12]]:1: note: interface is currently being defined [InterfaceIncompleteWithinDefinition]
  154. // CHECK:STDERR: interface J2 {
  155. // CHECK:STDERR: ^~~~~~~~~~~~~~
  156. // CHECK:STDERR:
  157. fn F[self: Self](z: Self.U2) -> Self.U2;
  158. }
  159. impl () as J2 where .U2 = {} {
  160. fn F[self: Self](z: {}) -> {} { return z; }
  161. }
  162. class C2 {
  163. // This allows the type to be copyable so it can be returned.
  164. adapt {};
  165. }
  166. impl C2 as J2 where .U2 = C2 {
  167. fn F[self: Self](z: C2) -> C2 { return self; }
  168. }
  169. // --- fail_associated_type_in_signature_mismatch.carbon
  170. library "[[@TEST_NAME]]";
  171. interface K {
  172. let V:! type;
  173. fn F[self: Self](v: V) -> V;
  174. }
  175. impl () as K where .V = {.a: ()} {
  176. // CHECK:STDERR: fail_associated_type_in_signature_mismatch.carbon:[[@LINE+7]]:20: error: type `{.x: ()}` of parameter 1 in redeclaration differs from previous parameter type `{.a: ()}` [RedeclParamDiffersType]
  177. // CHECK:STDERR: fn F[self: Self](v: {.x: ()}) -> {.x: ()} { return v; }
  178. // CHECK:STDERR: ^~~~~~~~~~~
  179. // CHECK:STDERR: fail_associated_type_in_signature_mismatch.carbon:[[@LINE-7]]:20: note: previous declaration's corresponding parameter here [RedeclParamPrevious]
  180. // CHECK:STDERR: fn F[self: Self](v: V) -> V;
  181. // CHECK:STDERR: ^~~~
  182. // CHECK:STDERR:
  183. fn F[self: Self](v: {.x: ()}) -> {.x: ()} { return v; }
  184. }
  185. // --- use_non-type_in_function.carbon
  186. library "[[@TEST_NAME]]";
  187. interface M {
  188. let Z:! {.b: {}};
  189. fn G() -> {};
  190. }
  191. impl () as M where .Z = {.b = {}} {
  192. fn G() -> {} {
  193. return (Self as M).Z.b;
  194. }
  195. }
  196. // --- self_as_uses_correct_rewrite_constraint.carbon
  197. library "[[@TEST_NAME]]";
  198. class C(T:! type) {}
  199. interface M {
  200. let Z:! {.b: type};
  201. fn G() -> type;
  202. }
  203. impl C({}) as M where .Z = {.b = {}} {
  204. fn G() -> type {
  205. return (Self as M).Z.b;
  206. }
  207. }
  208. impl C(()) as M where .Z = {.b = ()} {
  209. fn G() -> type {
  210. return (Self as M).Z.b;
  211. }
  212. }
  213. // --- associated_int_in_array.carbon
  214. library "[[@TEST_NAME]]";
  215. interface I {
  216. let N:! i32;
  217. fn F[self: Self]() -> array(bool, N);
  218. }
  219. impl () as I where .N = 2 {
  220. fn F[self: Self]() -> array(bool, 2) { return (true, false); }
  221. }
  222. // --- fail_todo_symbolic_associated_type_in_concrete_context.carbon
  223. interface Z {
  224. let X:! type;
  225. }
  226. class C(T:! type) {}
  227. class D {}
  228. impl forall [T:! type] T as Z where .X = C(T) {}
  229. fn F() {
  230. // TODO: `D.(Z.X)` is `C(D)`, but is incorrecty treated only as the symbolic
  231. // `C(T)` here which fails to convert.
  232. // CHECK:STDERR: fail_todo_symbolic_associated_type_in_concrete_context.carbon:[[@LINE+7]]:20: error: cannot implicitly convert expression of type `C(D)` to `C(T)` [ConversionFailure]
  233. // CHECK:STDERR: let a: D.(Z.X) = {} as C(D);
  234. // CHECK:STDERR: ^~~~~~~~~~
  235. // CHECK:STDERR: fail_todo_symbolic_associated_type_in_concrete_context.carbon:[[@LINE+4]]:20: note: type `C(D)` does not implement interface `Core.ImplicitAs(C(T))` [MissingImplInMemberAccessNote]
  236. // CHECK:STDERR: let a: D.(Z.X) = {} as C(D);
  237. // CHECK:STDERR: ^~~~~~~~~~
  238. // CHECK:STDERR:
  239. let a: D.(Z.X) = {} as C(D);
  240. }
  241. // CHECK:STDOUT: --- associated_type_in_method_signature.carbon
  242. // CHECK:STDOUT:
  243. // CHECK:STDOUT: constants {
  244. // CHECK:STDOUT: %J.type: type = facet_type <@J> [concrete]
  245. // CHECK:STDOUT: %Self.ccd: %J.type = bind_symbolic_name Self, 0 [symbolic]
  246. // CHECK:STDOUT: %J.assoc_type: type = assoc_entity_type @J [concrete]
  247. // CHECK:STDOUT: %assoc0.411: %J.assoc_type = assoc_entity element0, @J.%U [concrete]
  248. // CHECK:STDOUT: %Self.as_type.3df: type = facet_access_type %Self.ccd [symbolic]
  249. // CHECK:STDOUT: %Self.as_wit.iface0: <witness> = facet_access_witness %Self.ccd, element0 [symbolic]
  250. // CHECK:STDOUT: %J.facet.085: %J.type = facet_value %Self.as_type.3df, (%Self.as_wit.iface0) [symbolic]
  251. // CHECK:STDOUT: %impl.elem0.d9c: type = impl_witness_access %Self.as_wit.iface0, element0 [symbolic]
  252. // CHECK:STDOUT: %F.type.c14: type = fn_type @F.1 [concrete]
  253. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  254. // CHECK:STDOUT: %F.b71: %F.type.c14 = struct_value () [concrete]
  255. // CHECK:STDOUT: %assoc1: %J.assoc_type = assoc_entity element1, @J.%F.decl [concrete]
  256. // CHECK:STDOUT: %.Self: %J.type = bind_symbolic_name .Self [symbolic_self]
  257. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self [symbolic_self]
  258. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self, element0 [symbolic_self]
  259. // CHECK:STDOUT: %J.facet.28c: %J.type = facet_value %.Self.as_type, (%.Self.as_wit.iface0) [symbolic_self]
  260. // CHECK:STDOUT: %impl.elem0.53a: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self]
  261. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  262. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  263. // CHECK:STDOUT: %J_where.type.b78: type = facet_type <@J where %impl.elem0.53a = %i32> [concrete]
  264. // CHECK:STDOUT: %impl_witness.bcc: <witness> = impl_witness (%i32, @impl.05c.%F.decl) [concrete]
  265. // CHECK:STDOUT: %F.type.ea9: type = fn_type @F.2 [concrete]
  266. // CHECK:STDOUT: %F.405: %F.type.ea9 = struct_value () [concrete]
  267. // CHECK:STDOUT: %J.facet.473: %J.type = facet_value %empty_tuple.type, (%impl_witness.bcc) [concrete]
  268. // CHECK:STDOUT: %int_2.ecc: Core.IntLiteral = int_value 2 [concrete]
  269. // CHECK:STDOUT: %Add.type: type = facet_type <@Add> [concrete]
  270. // CHECK:STDOUT: %Op.type.545: type = fn_type @Op.1 [concrete]
  271. // CHECK:STDOUT: %impl_witness.01d: <witness> = impl_witness (imports.%Core.import_ref.344), @impl.2c2(%int_32) [concrete]
  272. // CHECK:STDOUT: %Op.type.210: type = fn_type @Op.2, @impl.2c2(%int_32) [concrete]
  273. // CHECK:STDOUT: %Op.c82: %Op.type.210 = struct_value () [concrete]
  274. // CHECK:STDOUT: %Add.facet: %Add.type = facet_value %i32, (%impl_witness.01d) [concrete]
  275. // CHECK:STDOUT: %.f1a: type = fn_type_with_self_type %Op.type.545, %Add.facet [concrete]
  276. // CHECK:STDOUT: %Op.specific_fn: <specific function> = specific_function %Op.c82, @Op.2(%int_32) [concrete]
  277. // CHECK:STDOUT: %ImplicitAs.type.205: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [concrete]
  278. // CHECK:STDOUT: %Convert.type.1b6: type = fn_type @Convert.1, @ImplicitAs(%i32) [concrete]
  279. // CHECK:STDOUT: %impl_witness.d39: <witness> = impl_witness (imports.%Core.import_ref.a5b), @impl.4f9(%int_32) [concrete]
  280. // CHECK:STDOUT: %Convert.type.035: type = fn_type @Convert.2, @impl.4f9(%int_32) [concrete]
  281. // CHECK:STDOUT: %Convert.956: %Convert.type.035 = struct_value () [concrete]
  282. // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.205 = facet_value Core.IntLiteral, (%impl_witness.d39) [concrete]
  283. // CHECK:STDOUT: %.be7: type = fn_type_with_self_type %Convert.type.1b6, %ImplicitAs.facet [concrete]
  284. // CHECK:STDOUT: %Convert.bound.ef9: <bound method> = bound_method %int_2.ecc, %Convert.956 [concrete]
  285. // CHECK:STDOUT: %Convert.specific_fn: <specific function> = specific_function %Convert.956, @Convert.2(%int_32) [concrete]
  286. // CHECK:STDOUT: %bound_method.b92: <bound method> = bound_method %int_2.ecc, %Convert.specific_fn [concrete]
  287. // CHECK:STDOUT: %int_2.ef8: %i32 = int_value 2 [concrete]
  288. // CHECK:STDOUT: %CallMethod.type: type = fn_type @CallMethod [concrete]
  289. // CHECK:STDOUT: %CallMethod: %CallMethod.type = struct_value () [concrete]
  290. // CHECK:STDOUT: %.351: type = fn_type_with_self_type %F.type.c14, %J.facet.473 [concrete]
  291. // CHECK:STDOUT: %int_40.f80: Core.IntLiteral = int_value 40 [concrete]
  292. // CHECK:STDOUT: %Convert.bound.e52: <bound method> = bound_method %int_40.f80, %Convert.956 [concrete]
  293. // CHECK:STDOUT: %bound_method.7b8: <bound method> = bound_method %int_40.f80, %Convert.specific_fn [concrete]
  294. // CHECK:STDOUT: %int_40.518: %i32 = int_value 40 [concrete]
  295. // CHECK:STDOUT: %C: type = class_type @C [concrete]
  296. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  297. // CHECK:STDOUT: %complete_type.357: <witness> = complete_type_witness %empty_struct_type [concrete]
  298. // CHECK:STDOUT: %J_where.type.6f2: type = facet_type <@J where %impl.elem0.53a = %C> [concrete]
  299. // CHECK:STDOUT: %impl_witness.192: <witness> = impl_witness (%C, @impl.f57.%F.decl) [concrete]
  300. // CHECK:STDOUT: %F.type.69d: type = fn_type @F.3 [concrete]
  301. // CHECK:STDOUT: %F.451: %F.type.69d = struct_value () [concrete]
  302. // CHECK:STDOUT: %J.facet.e0b: %J.type = facet_value %C, (%impl_witness.192) [concrete]
  303. // CHECK:STDOUT: }
  304. // CHECK:STDOUT:
  305. // CHECK:STDOUT: imports {
  306. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  307. // CHECK:STDOUT: .Int = %Core.Int
  308. // CHECK:STDOUT: .Add = %Core.Add
  309. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  310. // CHECK:STDOUT: import Core//prelude
  311. // CHECK:STDOUT: import Core//prelude/...
  312. // CHECK:STDOUT: }
  313. // CHECK:STDOUT: }
  314. // CHECK:STDOUT:
  315. // CHECK:STDOUT: file {
  316. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  317. // CHECK:STDOUT: .Core = imports.%Core
  318. // CHECK:STDOUT: .J = %J.decl
  319. // CHECK:STDOUT: .CallMethod = %CallMethod.decl
  320. // CHECK:STDOUT: .C = %C.decl
  321. // CHECK:STDOUT: }
  322. // CHECK:STDOUT: %Core.import = import Core
  323. // CHECK:STDOUT: %J.decl: type = interface_decl @J [concrete = constants.%J.type] {} {}
  324. // CHECK:STDOUT: impl_decl @impl.05c [concrete] {} {
  325. // CHECK:STDOUT: %.loc8_7.1: %empty_tuple.type = tuple_literal ()
  326. // CHECK:STDOUT: %.loc8_7.2: type = converted %.loc8_7.1, constants.%empty_tuple.type [concrete = constants.%empty_tuple.type]
  327. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  328. // CHECK:STDOUT: %.Self: %J.type = bind_symbolic_name .Self [symbolic_self = constants.%.Self]
  329. // CHECK:STDOUT: %.Self.ref: %J.type = name_ref .Self, %.Self [symbolic_self = constants.%.Self]
  330. // CHECK:STDOUT: %U.ref: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0.411]
  331. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self.ref [symbolic_self = constants.%.Self.as_type]
  332. // CHECK:STDOUT: %.loc8_20: type = converted %.Self.ref, %.Self.as_type [symbolic_self = constants.%.Self.as_type]
  333. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self.ref, element0 [symbolic_self = constants.%.Self.as_wit.iface0]
  334. // CHECK:STDOUT: %impl.elem0: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self = constants.%impl.elem0.53a]
  335. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  336. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  337. // CHECK:STDOUT: %.loc8_14: type = where_expr %.Self [concrete = constants.%J_where.type.b78] {
  338. // CHECK:STDOUT: requirement_rewrite %impl.elem0, %i32
  339. // CHECK:STDOUT: }
  340. // CHECK:STDOUT: }
  341. // CHECK:STDOUT: %impl_witness.loc8: <witness> = impl_witness (constants.%i32, @impl.05c.%F.decl) [concrete = constants.%impl_witness.bcc]
  342. // CHECK:STDOUT: %CallMethod.decl: %CallMethod.type = fn_decl @CallMethod [concrete = constants.%CallMethod] {
  343. // CHECK:STDOUT: %x.patt: %empty_tuple.type = binding_pattern x
  344. // CHECK:STDOUT: %x.param_patt: %empty_tuple.type = value_param_pattern %x.patt, call_param0
  345. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  346. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, call_param1
  347. // CHECK:STDOUT: } {
  348. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  349. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  350. // CHECK:STDOUT: %x.param: %empty_tuple.type = value_param call_param0
  351. // CHECK:STDOUT: %.loc12_19.1: type = splice_block %.loc12_19.3 [concrete = constants.%empty_tuple.type] {
  352. // CHECK:STDOUT: %.loc12_19.2: %empty_tuple.type = tuple_literal ()
  353. // CHECK:STDOUT: %.loc12_19.3: type = converted %.loc12_19.2, constants.%empty_tuple.type [concrete = constants.%empty_tuple.type]
  354. // CHECK:STDOUT: }
  355. // CHECK:STDOUT: %x: %empty_tuple.type = bind_name x, %x.param
  356. // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param1
  357. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  358. // CHECK:STDOUT: }
  359. // CHECK:STDOUT: %C.decl: type = class_decl @C [concrete = constants.%C] {} {}
  360. // CHECK:STDOUT: impl_decl @impl.f57 [concrete] {} {
  361. // CHECK:STDOUT: %C.ref.loc21_6: type = name_ref C, file.%C.decl [concrete = constants.%C]
  362. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  363. // CHECK:STDOUT: %.Self: %J.type = bind_symbolic_name .Self [symbolic_self = constants.%.Self]
  364. // CHECK:STDOUT: %.Self.ref: %J.type = name_ref .Self, %.Self [symbolic_self = constants.%.Self]
  365. // CHECK:STDOUT: %U.ref: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0.411]
  366. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self.ref [symbolic_self = constants.%.Self.as_type]
  367. // CHECK:STDOUT: %.loc21_19: type = converted %.Self.ref, %.Self.as_type [symbolic_self = constants.%.Self.as_type]
  368. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self.ref, element0 [symbolic_self = constants.%.Self.as_wit.iface0]
  369. // CHECK:STDOUT: %impl.elem0: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self = constants.%impl.elem0.53a]
  370. // CHECK:STDOUT: %C.ref.loc21_24: type = name_ref C, file.%C.decl [concrete = constants.%C]
  371. // CHECK:STDOUT: %.loc21_13: type = where_expr %.Self [concrete = constants.%J_where.type.6f2] {
  372. // CHECK:STDOUT: requirement_rewrite %impl.elem0, %C.ref.loc21_24
  373. // CHECK:STDOUT: }
  374. // CHECK:STDOUT: }
  375. // CHECK:STDOUT: %impl_witness.loc21: <witness> = impl_witness (constants.%C, @impl.f57.%F.decl) [concrete = constants.%impl_witness.192]
  376. // CHECK:STDOUT: }
  377. // CHECK:STDOUT:
  378. // CHECK:STDOUT: interface @J {
  379. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.ccd]
  380. // CHECK:STDOUT: %U: type = assoc_const_decl @U [concrete] {
  381. // CHECK:STDOUT: %assoc0: %J.assoc_type = assoc_entity element0, @J.%U [concrete = constants.%assoc0.411]
  382. // CHECK:STDOUT: }
  383. // CHECK:STDOUT: %F.decl: %F.type.c14 = fn_decl @F.1 [concrete = constants.%F.b71] {
  384. // CHECK:STDOUT: %self.patt: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type.3df) = binding_pattern self
  385. // CHECK:STDOUT: %self.param_patt: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type.3df) = value_param_pattern %self.patt, call_param0
  386. // CHECK:STDOUT: %u.patt: @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.d9c) = binding_pattern u
  387. // CHECK:STDOUT: %u.param_patt: @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.d9c) = value_param_pattern %u.patt, call_param1
  388. // CHECK:STDOUT: %return.patt: @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.d9c) = return_slot_pattern
  389. // CHECK:STDOUT: %return.param_patt: @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.d9c) = out_param_pattern %return.patt, call_param2
  390. // CHECK:STDOUT: } {
  391. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_29: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_23.1 (constants.%Self.as_wit.iface0)]
  392. // CHECK:STDOUT: %impl.elem0.loc5_29: type = impl_witness_access %Self.as_wit.iface0.loc5_29, element0 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.d9c)]
  393. // CHECK:STDOUT: %U.ref.loc5_29: type = name_ref U, %impl.elem0.loc5_29 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.d9c)]
  394. // CHECK:STDOUT: %self.param: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type.3df) = value_param call_param0
  395. // CHECK:STDOUT: %.loc5_14.1: type = splice_block %.loc5_14.2 [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type.3df)] {
  396. // CHECK:STDOUT: %Self.ref: %J.type = name_ref Self, @J.%Self [symbolic = %Self (constants.%Self.ccd)]
  397. // CHECK:STDOUT: %Self.as_type.loc5_14.2: type = facet_access_type %Self.ref [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type.3df)]
  398. // CHECK:STDOUT: %.loc5_14.2: type = converted %Self.ref, %Self.as_type.loc5_14.2 [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type.3df)]
  399. // CHECK:STDOUT: }
  400. // CHECK:STDOUT: %self: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type.3df) = bind_name self, %self.param
  401. // CHECK:STDOUT: %u.param: @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.d9c) = value_param call_param1
  402. // CHECK:STDOUT: %.loc5_23: type = splice_block %U.ref.loc5_23 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.d9c)] {
  403. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_23.2: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_23.1 (constants.%Self.as_wit.iface0)]
  404. // CHECK:STDOUT: %impl.elem0.loc5_23.2: type = impl_witness_access %Self.as_wit.iface0.loc5_23.2, element0 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.d9c)]
  405. // CHECK:STDOUT: %U.ref.loc5_23: type = name_ref U, %impl.elem0.loc5_23.2 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.d9c)]
  406. // CHECK:STDOUT: }
  407. // CHECK:STDOUT: %u: @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.d9c) = bind_name u, %u.param
  408. // CHECK:STDOUT: %return.param: ref @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.d9c) = out_param call_param2
  409. // CHECK:STDOUT: %return: ref @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.d9c) = return_slot %return.param
  410. // CHECK:STDOUT: }
  411. // CHECK:STDOUT: %assoc1: %J.assoc_type = assoc_entity element1, %F.decl [concrete = constants.%assoc1]
  412. // CHECK:STDOUT:
  413. // CHECK:STDOUT: !members:
  414. // CHECK:STDOUT: .Self = %Self
  415. // CHECK:STDOUT: .U = @U.%assoc0
  416. // CHECK:STDOUT: .F = %assoc1
  417. // CHECK:STDOUT: witness = (%U, %F.decl)
  418. // CHECK:STDOUT: }
  419. // CHECK:STDOUT:
  420. // CHECK:STDOUT: generic assoc_const @U(@J.%Self: %J.type) {
  421. // CHECK:STDOUT: assoc_const U:! type;
  422. // CHECK:STDOUT: }
  423. // CHECK:STDOUT:
  424. // CHECK:STDOUT: impl @impl.05c: %.loc8_7.2 as %.loc8_14 {
  425. // CHECK:STDOUT: %F.decl: %F.type.ea9 = fn_decl @F.2 [concrete = constants.%F.405] {
  426. // CHECK:STDOUT: %self.patt: %empty_tuple.type = binding_pattern self
  427. // CHECK:STDOUT: %self.param_patt: %empty_tuple.type = value_param_pattern %self.patt, call_param0
  428. // CHECK:STDOUT: %u.patt: %i32 = binding_pattern u
  429. // CHECK:STDOUT: %u.param_patt: %i32 = value_param_pattern %u.patt, call_param1
  430. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  431. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, call_param2
  432. // CHECK:STDOUT: } {
  433. // CHECK:STDOUT: %int_32.loc9_31: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  434. // CHECK:STDOUT: %i32.loc9_31: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  435. // CHECK:STDOUT: %self.param: %empty_tuple.type = value_param call_param0
  436. // CHECK:STDOUT: %Self.ref: type = name_ref Self, @impl.05c.%.loc8_7.2 [concrete = constants.%empty_tuple.type]
  437. // CHECK:STDOUT: %self: %empty_tuple.type = bind_name self, %self.param
  438. // CHECK:STDOUT: %u.param: %i32 = value_param call_param1
  439. // CHECK:STDOUT: %.loc9_23: type = splice_block %i32.loc9_23 [concrete = constants.%i32] {
  440. // CHECK:STDOUT: %int_32.loc9_23: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  441. // CHECK:STDOUT: %i32.loc9_23: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  442. // CHECK:STDOUT: }
  443. // CHECK:STDOUT: %u: %i32 = bind_name u, %u.param
  444. // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param2
  445. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  446. // CHECK:STDOUT: }
  447. // CHECK:STDOUT:
  448. // CHECK:STDOUT: !members:
  449. // CHECK:STDOUT: .F = %F.decl
  450. // CHECK:STDOUT: witness = file.%impl_witness.loc8
  451. // CHECK:STDOUT: }
  452. // CHECK:STDOUT:
  453. // CHECK:STDOUT: impl @impl.f57: %C.ref.loc21_6 as %.loc21_13 {
  454. // CHECK:STDOUT: %F.decl: %F.type.69d = fn_decl @F.3 [concrete = constants.%F.451] {
  455. // CHECK:STDOUT: %self.patt: %C = binding_pattern self
  456. // CHECK:STDOUT: %self.param_patt: %C = value_param_pattern %self.patt, call_param0
  457. // CHECK:STDOUT: %u.patt: %C = binding_pattern u
  458. // CHECK:STDOUT: %u.param_patt: %C = value_param_pattern %u.patt, call_param1
  459. // CHECK:STDOUT: %return.patt: %C = return_slot_pattern
  460. // CHECK:STDOUT: %return.param_patt: %C = out_param_pattern %return.patt, call_param2
  461. // CHECK:STDOUT: } {
  462. // CHECK:STDOUT: %C.ref.loc22_29: type = name_ref C, file.%C.decl [concrete = constants.%C]
  463. // CHECK:STDOUT: %self.param: %C = value_param call_param0
  464. // CHECK:STDOUT: %Self.ref: type = name_ref Self, @impl.f57.%C.ref.loc21_6 [concrete = constants.%C]
  465. // CHECK:STDOUT: %self: %C = bind_name self, %self.param
  466. // CHECK:STDOUT: %u.param: %C = value_param call_param1
  467. // CHECK:STDOUT: %C.ref.loc22_23: type = name_ref C, file.%C.decl [concrete = constants.%C]
  468. // CHECK:STDOUT: %u: %C = bind_name u, %u.param
  469. // CHECK:STDOUT: %return.param: ref %C = out_param call_param2
  470. // CHECK:STDOUT: %return: ref %C = return_slot %return.param
  471. // CHECK:STDOUT: }
  472. // CHECK:STDOUT:
  473. // CHECK:STDOUT: !members:
  474. // CHECK:STDOUT: .C = <poisoned>
  475. // CHECK:STDOUT: .F = %F.decl
  476. // CHECK:STDOUT: witness = file.%impl_witness.loc21
  477. // CHECK:STDOUT: }
  478. // CHECK:STDOUT:
  479. // CHECK:STDOUT: class @C {
  480. // CHECK:STDOUT: %.loc18_10: %empty_struct_type = struct_literal ()
  481. // CHECK:STDOUT: %.loc18_11: type = converted %.loc18_10, constants.%empty_struct_type [concrete = constants.%empty_struct_type]
  482. // CHECK:STDOUT: adapt_decl %.loc18_11 [concrete]
  483. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  484. // CHECK:STDOUT: complete_type_witness = %complete_type
  485. // CHECK:STDOUT:
  486. // CHECK:STDOUT: !members:
  487. // CHECK:STDOUT: .Self = constants.%C
  488. // CHECK:STDOUT: }
  489. // CHECK:STDOUT:
  490. // CHECK:STDOUT: generic fn @F.1(@J.%Self: %J.type) {
  491. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self.ccd)]
  492. // CHECK:STDOUT: %Self.as_type.loc5_14.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type.3df)]
  493. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_23.1: <witness> = facet_access_witness %Self, element0 [symbolic = %Self.as_wit.iface0.loc5_23.1 (constants.%Self.as_wit.iface0)]
  494. // CHECK:STDOUT: %impl.elem0.loc5_23.1: type = impl_witness_access %Self.as_wit.iface0.loc5_23.1, element0 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.d9c)]
  495. // CHECK:STDOUT:
  496. // CHECK:STDOUT: fn[%self.param_patt: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type.3df)](%u.param_patt: @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.d9c)) -> @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.d9c);
  497. // CHECK:STDOUT: }
  498. // CHECK:STDOUT:
  499. // CHECK:STDOUT: fn @F.2[%self.param_patt: %empty_tuple.type](%u.param_patt: %i32) -> %i32 {
  500. // CHECK:STDOUT: !entry:
  501. // CHECK:STDOUT: %u.ref: %i32 = name_ref u, %u
  502. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [concrete = constants.%int_2.ecc]
  503. // CHECK:STDOUT: %impl.elem0.loc9_46: %.f1a = impl_witness_access constants.%impl_witness.01d, element0 [concrete = constants.%Op.c82]
  504. // CHECK:STDOUT: %bound_method.loc9_46.1: <bound method> = bound_method %u.ref, %impl.elem0.loc9_46
  505. // CHECK:STDOUT: %specific_fn.loc9_46: <specific function> = specific_function %impl.elem0.loc9_46, @Op.2(constants.%int_32) [concrete = constants.%Op.specific_fn]
  506. // CHECK:STDOUT: %bound_method.loc9_46.2: <bound method> = bound_method %u.ref, %specific_fn.loc9_46
  507. // CHECK:STDOUT: %impl.elem0.loc9_48: %.be7 = impl_witness_access constants.%impl_witness.d39, element0 [concrete = constants.%Convert.956]
  508. // CHECK:STDOUT: %bound_method.loc9_48.1: <bound method> = bound_method %int_2, %impl.elem0.loc9_48 [concrete = constants.%Convert.bound.ef9]
  509. // CHECK:STDOUT: %specific_fn.loc9_48: <specific function> = specific_function %impl.elem0.loc9_48, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  510. // CHECK:STDOUT: %bound_method.loc9_48.2: <bound method> = bound_method %int_2, %specific_fn.loc9_48 [concrete = constants.%bound_method.b92]
  511. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %bound_method.loc9_48.2(%int_2) [concrete = constants.%int_2.ef8]
  512. // CHECK:STDOUT: %.loc9_48.1: %i32 = value_of_initializer %int.convert_checked [concrete = constants.%int_2.ef8]
  513. // CHECK:STDOUT: %.loc9_48.2: %i32 = converted %int_2, %.loc9_48.1 [concrete = constants.%int_2.ef8]
  514. // CHECK:STDOUT: %int.sadd: init %i32 = call %bound_method.loc9_46.2(%u.ref, %.loc9_48.2)
  515. // CHECK:STDOUT: %.loc9_49.1: %i32 = value_of_initializer %int.sadd
  516. // CHECK:STDOUT: %.loc9_49.2: %i32 = converted %int.sadd, %.loc9_49.1
  517. // CHECK:STDOUT: return %.loc9_49.2
  518. // CHECK:STDOUT: }
  519. // CHECK:STDOUT:
  520. // CHECK:STDOUT: fn @CallMethod(%x.param_patt: %empty_tuple.type) -> %i32 {
  521. // CHECK:STDOUT: !entry:
  522. // CHECK:STDOUT: %x.ref: %empty_tuple.type = name_ref x, %x
  523. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  524. // CHECK:STDOUT: %F.ref: %J.assoc_type = name_ref F, @J.%assoc1 [concrete = constants.%assoc1]
  525. // CHECK:STDOUT: %impl.elem1: %.351 = impl_witness_access constants.%impl_witness.bcc, element1 [concrete = constants.%F.405]
  526. // CHECK:STDOUT: %bound_method.loc13_11: <bound method> = bound_method %x.ref, %impl.elem1
  527. // CHECK:STDOUT: %int_40: Core.IntLiteral = int_value 40 [concrete = constants.%int_40.f80]
  528. // CHECK:STDOUT: %impl.elem0: %.be7 = impl_witness_access constants.%impl_witness.d39, element0 [concrete = constants.%Convert.956]
  529. // CHECK:STDOUT: %bound_method.loc13_18.1: <bound method> = bound_method %int_40, %impl.elem0 [concrete = constants.%Convert.bound.e52]
  530. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %impl.elem0, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  531. // CHECK:STDOUT: %bound_method.loc13_18.2: <bound method> = bound_method %int_40, %specific_fn [concrete = constants.%bound_method.7b8]
  532. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %bound_method.loc13_18.2(%int_40) [concrete = constants.%int_40.518]
  533. // CHECK:STDOUT: %.loc13_18.1: %i32 = value_of_initializer %int.convert_checked [concrete = constants.%int_40.518]
  534. // CHECK:STDOUT: %.loc13_18.2: %i32 = converted %int_40, %.loc13_18.1 [concrete = constants.%int_40.518]
  535. // CHECK:STDOUT: %F.call: init %i32 = call %bound_method.loc13_11(%x.ref, %.loc13_18.2)
  536. // CHECK:STDOUT: %.loc13_21.1: %i32 = value_of_initializer %F.call
  537. // CHECK:STDOUT: %.loc13_21.2: %i32 = converted %F.call, %.loc13_21.1
  538. // CHECK:STDOUT: return %.loc13_21.2
  539. // CHECK:STDOUT: }
  540. // CHECK:STDOUT:
  541. // CHECK:STDOUT: fn @F.3[%self.param_patt: %C](%u.param_patt: %C) -> %C {
  542. // CHECK:STDOUT: !entry:
  543. // CHECK:STDOUT: %self.ref: %C = name_ref self, %self
  544. // CHECK:STDOUT: return %self.ref
  545. // CHECK:STDOUT: }
  546. // CHECK:STDOUT:
  547. // CHECK:STDOUT: specific @U(constants.%Self.ccd) {}
  548. // CHECK:STDOUT:
  549. // CHECK:STDOUT: specific @U(constants.%J.facet.085) {}
  550. // CHECK:STDOUT:
  551. // CHECK:STDOUT: specific @F.1(constants.%Self.ccd) {
  552. // CHECK:STDOUT: %Self => constants.%Self.ccd
  553. // CHECK:STDOUT: %Self.as_type.loc5_14.1 => constants.%Self.as_type.3df
  554. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_23.1 => constants.%Self.as_wit.iface0
  555. // CHECK:STDOUT: %impl.elem0.loc5_23.1 => constants.%impl.elem0.d9c
  556. // CHECK:STDOUT: }
  557. // CHECK:STDOUT:
  558. // CHECK:STDOUT: specific @U(constants.%J.facet.28c) {}
  559. // CHECK:STDOUT:
  560. // CHECK:STDOUT: specific @F.1(constants.%J.facet.473) {
  561. // CHECK:STDOUT: %Self => constants.%J.facet.473
  562. // CHECK:STDOUT: %Self.as_type.loc5_14.1 => constants.%empty_tuple.type
  563. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_23.1 => constants.%impl_witness.bcc
  564. // CHECK:STDOUT: %impl.elem0.loc5_23.1 => constants.%i32
  565. // CHECK:STDOUT: }
  566. // CHECK:STDOUT:
  567. // CHECK:STDOUT: specific @F.1(constants.%J.facet.e0b) {
  568. // CHECK:STDOUT: %Self => constants.%J.facet.e0b
  569. // CHECK:STDOUT: %Self.as_type.loc5_14.1 => constants.%C
  570. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_23.1 => constants.%impl_witness.192
  571. // CHECK:STDOUT: %impl.elem0.loc5_23.1 => constants.%C
  572. // CHECK:STDOUT: }
  573. // CHECK:STDOUT:
  574. // CHECK:STDOUT: --- associated_type_in_function_signature.carbon
  575. // CHECK:STDOUT:
  576. // CHECK:STDOUT: constants {
  577. // CHECK:STDOUT: %J.type: type = facet_type <@J> [concrete]
  578. // CHECK:STDOUT: %Self.ccd: %J.type = bind_symbolic_name Self, 0 [symbolic]
  579. // CHECK:STDOUT: %J.assoc_type: type = assoc_entity_type @J [concrete]
  580. // CHECK:STDOUT: %assoc0.411: %J.assoc_type = assoc_entity element0, @J.%U [concrete]
  581. // CHECK:STDOUT: %Self.as_type.3df: type = facet_access_type %Self.ccd [symbolic]
  582. // CHECK:STDOUT: %Self.as_wit.iface0: <witness> = facet_access_witness %Self.ccd, element0 [symbolic]
  583. // CHECK:STDOUT: %J.facet.085: %J.type = facet_value %Self.as_type.3df, (%Self.as_wit.iface0) [symbolic]
  584. // CHECK:STDOUT: %impl.elem0.d9c: type = impl_witness_access %Self.as_wit.iface0, element0 [symbolic]
  585. // CHECK:STDOUT: %F.type.c14: type = fn_type @F.1 [concrete]
  586. // CHECK:STDOUT: %F.b71: %F.type.c14 = struct_value () [concrete]
  587. // CHECK:STDOUT: %assoc1: %J.assoc_type = assoc_entity element1, @J.%F.decl [concrete]
  588. // CHECK:STDOUT: %D: type = class_type @D [concrete]
  589. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  590. // CHECK:STDOUT: %complete_type.357: <witness> = complete_type_witness %empty_struct_type [concrete]
  591. // CHECK:STDOUT: %.Self: %J.type = bind_symbolic_name .Self [symbolic_self]
  592. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self [symbolic_self]
  593. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self, element0 [symbolic_self]
  594. // CHECK:STDOUT: %J.facet.28c: %J.type = facet_value %.Self.as_type, (%.Self.as_wit.iface0) [symbolic_self]
  595. // CHECK:STDOUT: %impl.elem0.53a: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self]
  596. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  597. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  598. // CHECK:STDOUT: %J_where.type: type = facet_type <@J where %impl.elem0.53a = %i32> [concrete]
  599. // CHECK:STDOUT: %impl_witness.56c: <witness> = impl_witness (%i32, @impl.847.%F.decl) [concrete]
  600. // CHECK:STDOUT: %F.type.d45: type = fn_type @F.2 [concrete]
  601. // CHECK:STDOUT: %F.fdb: %F.type.d45 = struct_value () [concrete]
  602. // CHECK:STDOUT: %J.facet.5af: %J.type = facet_value %D, (%impl_witness.56c) [concrete]
  603. // CHECK:STDOUT: %int_3.1ba: Core.IntLiteral = int_value 3 [concrete]
  604. // CHECK:STDOUT: %Add.type: type = facet_type <@Add> [concrete]
  605. // CHECK:STDOUT: %Op.type.545: type = fn_type @Op.1 [concrete]
  606. // CHECK:STDOUT: %impl_witness.01d: <witness> = impl_witness (imports.%Core.import_ref.344), @impl.2c2(%int_32) [concrete]
  607. // CHECK:STDOUT: %Op.type.210: type = fn_type @Op.2, @impl.2c2(%int_32) [concrete]
  608. // CHECK:STDOUT: %Op.c82: %Op.type.210 = struct_value () [concrete]
  609. // CHECK:STDOUT: %Add.facet: %Add.type = facet_value %i32, (%impl_witness.01d) [concrete]
  610. // CHECK:STDOUT: %.f1a: type = fn_type_with_self_type %Op.type.545, %Add.facet [concrete]
  611. // CHECK:STDOUT: %Op.specific_fn: <specific function> = specific_function %Op.c82, @Op.2(%int_32) [concrete]
  612. // CHECK:STDOUT: %ImplicitAs.type.205: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [concrete]
  613. // CHECK:STDOUT: %Convert.type.1b6: type = fn_type @Convert.1, @ImplicitAs(%i32) [concrete]
  614. // CHECK:STDOUT: %impl_witness.d39: <witness> = impl_witness (imports.%Core.import_ref.a5b), @impl.4f9(%int_32) [concrete]
  615. // CHECK:STDOUT: %Convert.type.035: type = fn_type @Convert.2, @impl.4f9(%int_32) [concrete]
  616. // CHECK:STDOUT: %Convert.956: %Convert.type.035 = struct_value () [concrete]
  617. // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.205 = facet_value Core.IntLiteral, (%impl_witness.d39) [concrete]
  618. // CHECK:STDOUT: %.be7: type = fn_type_with_self_type %Convert.type.1b6, %ImplicitAs.facet [concrete]
  619. // CHECK:STDOUT: %Convert.bound.b30: <bound method> = bound_method %int_3.1ba, %Convert.956 [concrete]
  620. // CHECK:STDOUT: %Convert.specific_fn: <specific function> = specific_function %Convert.956, @Convert.2(%int_32) [concrete]
  621. // CHECK:STDOUT: %bound_method.047: <bound method> = bound_method %int_3.1ba, %Convert.specific_fn [concrete]
  622. // CHECK:STDOUT: %int_3.822: %i32 = int_value 3 [concrete]
  623. // CHECK:STDOUT: %CallFunction.type: type = fn_type @CallFunction [concrete]
  624. // CHECK:STDOUT: %CallFunction: %CallFunction.type = struct_value () [concrete]
  625. // CHECK:STDOUT: %.1ca: type = fn_type_with_self_type %F.type.c14, %J.facet.5af [concrete]
  626. // CHECK:STDOUT: %int_4.0c1: Core.IntLiteral = int_value 4 [concrete]
  627. // CHECK:STDOUT: %Convert.bound.ac3: <bound method> = bound_method %int_4.0c1, %Convert.956 [concrete]
  628. // CHECK:STDOUT: %bound_method.1da: <bound method> = bound_method %int_4.0c1, %Convert.specific_fn [concrete]
  629. // CHECK:STDOUT: %int_4.940: %i32 = int_value 4 [concrete]
  630. // CHECK:STDOUT: }
  631. // CHECK:STDOUT:
  632. // CHECK:STDOUT: imports {
  633. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  634. // CHECK:STDOUT: .Int = %Core.Int
  635. // CHECK:STDOUT: .Add = %Core.Add
  636. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  637. // CHECK:STDOUT: import Core//prelude
  638. // CHECK:STDOUT: import Core//prelude/...
  639. // CHECK:STDOUT: }
  640. // CHECK:STDOUT: }
  641. // CHECK:STDOUT:
  642. // CHECK:STDOUT: file {
  643. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  644. // CHECK:STDOUT: .Core = imports.%Core
  645. // CHECK:STDOUT: .J = %J.decl
  646. // CHECK:STDOUT: .D = %D.decl
  647. // CHECK:STDOUT: .CallFunction = %CallFunction.decl
  648. // CHECK:STDOUT: }
  649. // CHECK:STDOUT: %Core.import = import Core
  650. // CHECK:STDOUT: %J.decl: type = interface_decl @J [concrete = constants.%J.type] {} {}
  651. // CHECK:STDOUT: %D.decl: type = class_decl @D [concrete = constants.%D] {} {}
  652. // CHECK:STDOUT: impl_decl @impl.847 [concrete] {} {
  653. // CHECK:STDOUT: %D.ref: type = name_ref D, file.%D.decl [concrete = constants.%D]
  654. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  655. // CHECK:STDOUT: %.Self: %J.type = bind_symbolic_name .Self [symbolic_self = constants.%.Self]
  656. // CHECK:STDOUT: %.Self.ref: %J.type = name_ref .Self, %.Self [symbolic_self = constants.%.Self]
  657. // CHECK:STDOUT: %U.ref: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0.411]
  658. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self.ref [symbolic_self = constants.%.Self.as_type]
  659. // CHECK:STDOUT: %.loc10_19: type = converted %.Self.ref, %.Self.as_type [symbolic_self = constants.%.Self.as_type]
  660. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self.ref, element0 [symbolic_self = constants.%.Self.as_wit.iface0]
  661. // CHECK:STDOUT: %impl.elem0: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self = constants.%impl.elem0.53a]
  662. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  663. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  664. // CHECK:STDOUT: %.loc10_13: type = where_expr %.Self [concrete = constants.%J_where.type] {
  665. // CHECK:STDOUT: requirement_rewrite %impl.elem0, %i32
  666. // CHECK:STDOUT: }
  667. // CHECK:STDOUT: }
  668. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (constants.%i32, @impl.847.%F.decl) [concrete = constants.%impl_witness.56c]
  669. // CHECK:STDOUT: %CallFunction.decl: %CallFunction.type = fn_decl @CallFunction [concrete = constants.%CallFunction] {
  670. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  671. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, call_param0
  672. // CHECK:STDOUT: } {
  673. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  674. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  675. // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param0
  676. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  677. // CHECK:STDOUT: }
  678. // CHECK:STDOUT: }
  679. // CHECK:STDOUT:
  680. // CHECK:STDOUT: interface @J {
  681. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.ccd]
  682. // CHECK:STDOUT: %U: type = assoc_const_decl @U [concrete] {
  683. // CHECK:STDOUT: %assoc0: %J.assoc_type = assoc_entity element0, @J.%U [concrete = constants.%assoc0.411]
  684. // CHECK:STDOUT: }
  685. // CHECK:STDOUT: %F.decl: %F.type.c14 = fn_decl @F.1 [concrete = constants.%F.b71] {
  686. // CHECK:STDOUT: %u.patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = binding_pattern u
  687. // CHECK:STDOUT: %u.param_patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = value_param_pattern %u.patt, call_param0
  688. // CHECK:STDOUT: %return.patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = return_slot_pattern
  689. // CHECK:STDOUT: %return.param_patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = out_param_pattern %return.patt, call_param1
  690. // CHECK:STDOUT: } {
  691. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_17: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  692. // CHECK:STDOUT: %impl.elem0.loc5_17: type = impl_witness_access %Self.as_wit.iface0.loc5_17, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  693. // CHECK:STDOUT: %U.ref.loc5_17: type = name_ref U, %impl.elem0.loc5_17 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  694. // CHECK:STDOUT: %u.param: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = value_param call_param0
  695. // CHECK:STDOUT: %.loc5: type = splice_block %U.ref.loc5_11 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)] {
  696. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.2: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  697. // CHECK:STDOUT: %impl.elem0.loc5_11.2: type = impl_witness_access %Self.as_wit.iface0.loc5_11.2, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  698. // CHECK:STDOUT: %U.ref.loc5_11: type = name_ref U, %impl.elem0.loc5_11.2 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  699. // CHECK:STDOUT: }
  700. // CHECK:STDOUT: %u: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = bind_name u, %u.param
  701. // CHECK:STDOUT: %return.param: ref @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = out_param call_param1
  702. // CHECK:STDOUT: %return: ref @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = return_slot %return.param
  703. // CHECK:STDOUT: }
  704. // CHECK:STDOUT: %assoc1: %J.assoc_type = assoc_entity element1, %F.decl [concrete = constants.%assoc1]
  705. // CHECK:STDOUT:
  706. // CHECK:STDOUT: !members:
  707. // CHECK:STDOUT: .Self = %Self
  708. // CHECK:STDOUT: .U = @U.%assoc0
  709. // CHECK:STDOUT: .F = %assoc1
  710. // CHECK:STDOUT: witness = (%U, %F.decl)
  711. // CHECK:STDOUT: }
  712. // CHECK:STDOUT:
  713. // CHECK:STDOUT: generic assoc_const @U(@J.%Self: %J.type) {
  714. // CHECK:STDOUT: assoc_const U:! type;
  715. // CHECK:STDOUT: }
  716. // CHECK:STDOUT:
  717. // CHECK:STDOUT: impl @impl.847: %D.ref as %.loc10_13 {
  718. // CHECK:STDOUT: %F.decl: %F.type.d45 = fn_decl @F.2 [concrete = constants.%F.fdb] {
  719. // CHECK:STDOUT: %u.patt: %i32 = binding_pattern u
  720. // CHECK:STDOUT: %u.param_patt: %i32 = value_param_pattern %u.patt, call_param0
  721. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  722. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, call_param1
  723. // CHECK:STDOUT: } {
  724. // CHECK:STDOUT: %int_32.loc11_19: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  725. // CHECK:STDOUT: %i32.loc11_19: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  726. // CHECK:STDOUT: %u.param: %i32 = value_param call_param0
  727. // CHECK:STDOUT: %.loc11_11: type = splice_block %i32.loc11_11 [concrete = constants.%i32] {
  728. // CHECK:STDOUT: %int_32.loc11_11: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  729. // CHECK:STDOUT: %i32.loc11_11: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  730. // CHECK:STDOUT: }
  731. // CHECK:STDOUT: %u: %i32 = bind_name u, %u.param
  732. // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param1
  733. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  734. // CHECK:STDOUT: }
  735. // CHECK:STDOUT:
  736. // CHECK:STDOUT: !members:
  737. // CHECK:STDOUT: .F = %F.decl
  738. // CHECK:STDOUT: witness = file.%impl_witness
  739. // CHECK:STDOUT: }
  740. // CHECK:STDOUT:
  741. // CHECK:STDOUT: class @D {
  742. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  743. // CHECK:STDOUT: complete_type_witness = %complete_type
  744. // CHECK:STDOUT:
  745. // CHECK:STDOUT: !members:
  746. // CHECK:STDOUT: .Self = constants.%D
  747. // CHECK:STDOUT: }
  748. // CHECK:STDOUT:
  749. // CHECK:STDOUT: generic fn @F.1(@J.%Self: %J.type) {
  750. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self.ccd)]
  751. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1: <witness> = facet_access_witness %Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  752. // CHECK:STDOUT: %impl.elem0.loc5_11.1: type = impl_witness_access %Self.as_wit.iface0.loc5_11.1, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  753. // CHECK:STDOUT:
  754. // CHECK:STDOUT: fn(%u.param_patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c)) -> @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c);
  755. // CHECK:STDOUT: }
  756. // CHECK:STDOUT:
  757. // CHECK:STDOUT: fn @F.2(%u.param_patt: %i32) -> %i32 {
  758. // CHECK:STDOUT: !entry:
  759. // CHECK:STDOUT: %u.ref: %i32 = name_ref u, %u
  760. // CHECK:STDOUT: %int_3: Core.IntLiteral = int_value 3 [concrete = constants.%int_3.1ba]
  761. // CHECK:STDOUT: %impl.elem0.loc11_34: %.f1a = impl_witness_access constants.%impl_witness.01d, element0 [concrete = constants.%Op.c82]
  762. // CHECK:STDOUT: %bound_method.loc11_34.1: <bound method> = bound_method %u.ref, %impl.elem0.loc11_34
  763. // CHECK:STDOUT: %specific_fn.loc11_34: <specific function> = specific_function %impl.elem0.loc11_34, @Op.2(constants.%int_32) [concrete = constants.%Op.specific_fn]
  764. // CHECK:STDOUT: %bound_method.loc11_34.2: <bound method> = bound_method %u.ref, %specific_fn.loc11_34
  765. // CHECK:STDOUT: %impl.elem0.loc11_36: %.be7 = impl_witness_access constants.%impl_witness.d39, element0 [concrete = constants.%Convert.956]
  766. // CHECK:STDOUT: %bound_method.loc11_36.1: <bound method> = bound_method %int_3, %impl.elem0.loc11_36 [concrete = constants.%Convert.bound.b30]
  767. // CHECK:STDOUT: %specific_fn.loc11_36: <specific function> = specific_function %impl.elem0.loc11_36, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  768. // CHECK:STDOUT: %bound_method.loc11_36.2: <bound method> = bound_method %int_3, %specific_fn.loc11_36 [concrete = constants.%bound_method.047]
  769. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %bound_method.loc11_36.2(%int_3) [concrete = constants.%int_3.822]
  770. // CHECK:STDOUT: %.loc11_36.1: %i32 = value_of_initializer %int.convert_checked [concrete = constants.%int_3.822]
  771. // CHECK:STDOUT: %.loc11_36.2: %i32 = converted %int_3, %.loc11_36.1 [concrete = constants.%int_3.822]
  772. // CHECK:STDOUT: %int.sadd: init %i32 = call %bound_method.loc11_34.2(%u.ref, %.loc11_36.2)
  773. // CHECK:STDOUT: %.loc11_37.1: %i32 = value_of_initializer %int.sadd
  774. // CHECK:STDOUT: %.loc11_37.2: %i32 = converted %int.sadd, %.loc11_37.1
  775. // CHECK:STDOUT: return %.loc11_37.2
  776. // CHECK:STDOUT: }
  777. // CHECK:STDOUT:
  778. // CHECK:STDOUT: fn @CallFunction() -> %i32 {
  779. // CHECK:STDOUT: !entry:
  780. // CHECK:STDOUT: %D.ref: type = name_ref D, file.%D.decl [concrete = constants.%D]
  781. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  782. // CHECK:STDOUT: %F.ref: %J.assoc_type = name_ref F, @J.%assoc1 [concrete = constants.%assoc1]
  783. // CHECK:STDOUT: %J.facet: %J.type = facet_value constants.%D, (constants.%impl_witness.56c) [concrete = constants.%J.facet.5af]
  784. // CHECK:STDOUT: %.loc15_11: %J.type = converted %D.ref, %J.facet [concrete = constants.%J.facet.5af]
  785. // CHECK:STDOUT: %as_wit.iface0: <witness> = facet_access_witness %.loc15_11, element0 [concrete = constants.%impl_witness.56c]
  786. // CHECK:STDOUT: %impl.elem1: %.1ca = impl_witness_access %as_wit.iface0, element1 [concrete = constants.%F.fdb]
  787. // CHECK:STDOUT: %int_4: Core.IntLiteral = int_value 4 [concrete = constants.%int_4.0c1]
  788. // CHECK:STDOUT: %impl.elem0: %.be7 = impl_witness_access constants.%impl_witness.d39, element0 [concrete = constants.%Convert.956]
  789. // CHECK:STDOUT: %bound_method.loc15_18.1: <bound method> = bound_method %int_4, %impl.elem0 [concrete = constants.%Convert.bound.ac3]
  790. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %impl.elem0, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  791. // CHECK:STDOUT: %bound_method.loc15_18.2: <bound method> = bound_method %int_4, %specific_fn [concrete = constants.%bound_method.1da]
  792. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %bound_method.loc15_18.2(%int_4) [concrete = constants.%int_4.940]
  793. // CHECK:STDOUT: %.loc15_18.1: %i32 = value_of_initializer %int.convert_checked [concrete = constants.%int_4.940]
  794. // CHECK:STDOUT: %.loc15_18.2: %i32 = converted %int_4, %.loc15_18.1 [concrete = constants.%int_4.940]
  795. // CHECK:STDOUT: %F.call: init %i32 = call %impl.elem1(%.loc15_18.2)
  796. // CHECK:STDOUT: %.loc15_20.1: %i32 = value_of_initializer %F.call
  797. // CHECK:STDOUT: %.loc15_20.2: %i32 = converted %F.call, %.loc15_20.1
  798. // CHECK:STDOUT: return %.loc15_20.2
  799. // CHECK:STDOUT: }
  800. // CHECK:STDOUT:
  801. // CHECK:STDOUT: specific @U(constants.%Self.ccd) {}
  802. // CHECK:STDOUT:
  803. // CHECK:STDOUT: specific @U(constants.%J.facet.085) {}
  804. // CHECK:STDOUT:
  805. // CHECK:STDOUT: specific @F.1(constants.%Self.ccd) {
  806. // CHECK:STDOUT: %Self => constants.%Self.ccd
  807. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1 => constants.%Self.as_wit.iface0
  808. // CHECK:STDOUT: %impl.elem0.loc5_11.1 => constants.%impl.elem0.d9c
  809. // CHECK:STDOUT: }
  810. // CHECK:STDOUT:
  811. // CHECK:STDOUT: specific @U(constants.%J.facet.28c) {}
  812. // CHECK:STDOUT:
  813. // CHECK:STDOUT: specific @F.1(constants.%J.facet.5af) {
  814. // CHECK:STDOUT: %Self => constants.%J.facet.5af
  815. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1 => constants.%impl_witness.56c
  816. // CHECK:STDOUT: %impl.elem0.loc5_11.1 => constants.%i32
  817. // CHECK:STDOUT: }
  818. // CHECK:STDOUT:
  819. // CHECK:STDOUT: --- extend_impl_with_associated_type_in_signature.carbon
  820. // CHECK:STDOUT:
  821. // CHECK:STDOUT: constants {
  822. // CHECK:STDOUT: %J.type: type = facet_type <@J> [concrete]
  823. // CHECK:STDOUT: %Self.ccd: %J.type = bind_symbolic_name Self, 0 [symbolic]
  824. // CHECK:STDOUT: %J.assoc_type: type = assoc_entity_type @J [concrete]
  825. // CHECK:STDOUT: %assoc0.411: %J.assoc_type = assoc_entity element0, @J.%U [concrete]
  826. // CHECK:STDOUT: %Self.as_type.3df: type = facet_access_type %Self.ccd [symbolic]
  827. // CHECK:STDOUT: %Self.as_wit.iface0: <witness> = facet_access_witness %Self.ccd, element0 [symbolic]
  828. // CHECK:STDOUT: %J.facet.085e97.1: %J.type = facet_value %Self.as_type.3df, (%Self.as_wit.iface0) [symbolic]
  829. // CHECK:STDOUT: %impl.elem0.d9c3a6.1: type = impl_witness_access %Self.as_wit.iface0, element0 [symbolic]
  830. // CHECK:STDOUT: %F.type.c14: type = fn_type @F.1 [concrete]
  831. // CHECK:STDOUT: %F.b71: %F.type.c14 = struct_value () [concrete]
  832. // CHECK:STDOUT: %assoc1: %J.assoc_type = assoc_entity element1, @J.%F.decl [concrete]
  833. // CHECK:STDOUT: %G.type.285: type = fn_type @G.1 [concrete]
  834. // CHECK:STDOUT: %G.e4b: %G.type.285 = struct_value () [concrete]
  835. // CHECK:STDOUT: %assoc2: %J.assoc_type = assoc_entity element2, @J.%G.decl [concrete]
  836. // CHECK:STDOUT: %E: type = class_type @E [concrete]
  837. // CHECK:STDOUT: %.Self: %J.type = bind_symbolic_name .Self [symbolic_self]
  838. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self [symbolic_self]
  839. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self, element0 [symbolic_self]
  840. // CHECK:STDOUT: %J.facet.28c: %J.type = facet_value %.Self.as_type, (%.Self.as_wit.iface0) [symbolic_self]
  841. // CHECK:STDOUT: %impl.elem0.53a: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self]
  842. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  843. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  844. // CHECK:STDOUT: %J_where.type: type = facet_type <@J where %impl.elem0.53a = %i32> [concrete]
  845. // CHECK:STDOUT: %impl_witness.71e: <witness> = impl_witness (%i32, @impl.2dd.%F.decl, @impl.2dd.%G.decl) [concrete]
  846. // CHECK:STDOUT: %F.type.e5e: type = fn_type @F.2 [concrete]
  847. // CHECK:STDOUT: %F.c81: %F.type.e5e = struct_value () [concrete]
  848. // CHECK:STDOUT: %G.type.89e: type = fn_type @G.2 [concrete]
  849. // CHECK:STDOUT: %G.105: %G.type.89e = struct_value () [concrete]
  850. // CHECK:STDOUT: %J.facet.ccb: %J.type = facet_value %E, (%impl_witness.71e) [concrete]
  851. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  852. // CHECK:STDOUT: %complete_type.357: <witness> = complete_type_witness %empty_struct_type [concrete]
  853. // CHECK:STDOUT: %i32.builtin: type = int_type signed, %int_32 [concrete]
  854. // CHECK:STDOUT: %complete_type.f8a: <witness> = complete_type_witness %i32.builtin [concrete]
  855. // CHECK:STDOUT: %int_1.5b8: Core.IntLiteral = int_value 1 [concrete]
  856. // CHECK:STDOUT: %Add.type: type = facet_type <@Add> [concrete]
  857. // CHECK:STDOUT: %Op.type.545: type = fn_type @Op.1 [concrete]
  858. // CHECK:STDOUT: %impl_witness.01d: <witness> = impl_witness (imports.%Core.import_ref.344), @impl.2c2(%int_32) [concrete]
  859. // CHECK:STDOUT: %Op.type.210: type = fn_type @Op.2, @impl.2c2(%int_32) [concrete]
  860. // CHECK:STDOUT: %Op.c82: %Op.type.210 = struct_value () [concrete]
  861. // CHECK:STDOUT: %Add.facet: %Add.type = facet_value %i32, (%impl_witness.01d) [concrete]
  862. // CHECK:STDOUT: %.f1a: type = fn_type_with_self_type %Op.type.545, %Add.facet [concrete]
  863. // CHECK:STDOUT: %Op.specific_fn: <specific function> = specific_function %Op.c82, @Op.2(%int_32) [concrete]
  864. // CHECK:STDOUT: %ImplicitAs.type.205: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [concrete]
  865. // CHECK:STDOUT: %Convert.type.1b6: type = fn_type @Convert.1, @ImplicitAs(%i32) [concrete]
  866. // CHECK:STDOUT: %impl_witness.d39: <witness> = impl_witness (imports.%Core.import_ref.a5b), @impl.4f9(%int_32) [concrete]
  867. // CHECK:STDOUT: %Convert.type.035: type = fn_type @Convert.2, @impl.4f9(%int_32) [concrete]
  868. // CHECK:STDOUT: %Convert.956: %Convert.type.035 = struct_value () [concrete]
  869. // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.205 = facet_value Core.IntLiteral, (%impl_witness.d39) [concrete]
  870. // CHECK:STDOUT: %.be7: type = fn_type_with_self_type %Convert.type.1b6, %ImplicitAs.facet [concrete]
  871. // CHECK:STDOUT: %Convert.bound.ab5: <bound method> = bound_method %int_1.5b8, %Convert.956 [concrete]
  872. // CHECK:STDOUT: %Convert.specific_fn: <specific function> = specific_function %Convert.956, @Convert.2(%int_32) [concrete]
  873. // CHECK:STDOUT: %bound_method.9a1: <bound method> = bound_method %int_1.5b8, %Convert.specific_fn [concrete]
  874. // CHECK:STDOUT: %int_1.5d2: %i32 = int_value 1 [concrete]
  875. // CHECK:STDOUT: %int_2.ecc: Core.IntLiteral = int_value 2 [concrete]
  876. // CHECK:STDOUT: %Convert.bound.ef9: <bound method> = bound_method %int_2.ecc, %Convert.956 [concrete]
  877. // CHECK:STDOUT: %bound_method.b92: <bound method> = bound_method %int_2.ecc, %Convert.specific_fn [concrete]
  878. // CHECK:STDOUT: %int_2.ef8: %i32 = int_value 2 [concrete]
  879. // CHECK:STDOUT: %CallBoth.type: type = fn_type @CallBoth [concrete]
  880. // CHECK:STDOUT: %CallBoth: %CallBoth.type = struct_value () [concrete]
  881. // CHECK:STDOUT: %.dea: type = fn_type_with_self_type %F.type.c14, %J.facet.ccb [concrete]
  882. // CHECK:STDOUT: %.4bc: type = fn_type_with_self_type %G.type.285, %J.facet.ccb [concrete]
  883. // CHECK:STDOUT: %int_3.1ba: Core.IntLiteral = int_value 3 [concrete]
  884. // CHECK:STDOUT: %Convert.bound.b30: <bound method> = bound_method %int_3.1ba, %Convert.956 [concrete]
  885. // CHECK:STDOUT: %bound_method.047: <bound method> = bound_method %int_3.1ba, %Convert.specific_fn [concrete]
  886. // CHECK:STDOUT: %int_3.822: %i32 = int_value 3 [concrete]
  887. // CHECK:STDOUT: %int_4.0c1: Core.IntLiteral = int_value 4 [concrete]
  888. // CHECK:STDOUT: %Convert.bound.ac3: <bound method> = bound_method %int_4.0c1, %Convert.956 [concrete]
  889. // CHECK:STDOUT: %bound_method.1da: <bound method> = bound_method %int_4.0c1, %Convert.specific_fn [concrete]
  890. // CHECK:STDOUT: %int_4.940: %i32 = int_value 4 [concrete]
  891. // CHECK:STDOUT: %int_5.64b: Core.IntLiteral = int_value 5 [concrete]
  892. // CHECK:STDOUT: %Convert.bound.4e6: <bound method> = bound_method %int_5.64b, %Convert.956 [concrete]
  893. // CHECK:STDOUT: %bound_method.a25: <bound method> = bound_method %int_5.64b, %Convert.specific_fn [concrete]
  894. // CHECK:STDOUT: %int_5.0f6: %i32 = int_value 5 [concrete]
  895. // CHECK:STDOUT: %int_6.462: Core.IntLiteral = int_value 6 [concrete]
  896. // CHECK:STDOUT: %Convert.bound.ce9: <bound method> = bound_method %int_6.462, %Convert.956 [concrete]
  897. // CHECK:STDOUT: %bound_method.efa: <bound method> = bound_method %int_6.462, %Convert.specific_fn [concrete]
  898. // CHECK:STDOUT: %int_6.e56: %i32 = int_value 6 [concrete]
  899. // CHECK:STDOUT: %T: %J.type = bind_symbolic_name T, 0 [symbolic]
  900. // CHECK:STDOUT: %T.patt: %J.type = symbolic_binding_pattern T, 0 [symbolic]
  901. // CHECK:STDOUT: %T.as_type: type = facet_access_type %T [symbolic]
  902. // CHECK:STDOUT: %T.as_wit.iface0: <witness> = facet_access_witness %T, element0 [symbolic]
  903. // CHECK:STDOUT: %J.facet.085e97.2: %J.type = facet_value %T.as_type, (%T.as_wit.iface0) [symbolic]
  904. // CHECK:STDOUT: %impl.elem0.d9c3a6.2: type = impl_witness_access %T.as_wit.iface0, element0 [symbolic]
  905. // CHECK:STDOUT: %GenericCallF.type: type = fn_type @GenericCallF [concrete]
  906. // CHECK:STDOUT: %GenericCallF: %GenericCallF.type = struct_value () [concrete]
  907. // CHECK:STDOUT: %require_complete.d9a: <witness> = require_complete_type %impl.elem0.d9c3a6.2 [symbolic]
  908. // CHECK:STDOUT: %require_complete.2a5: <witness> = require_complete_type %T.as_type [symbolic]
  909. // CHECK:STDOUT: %.4d2: type = fn_type_with_self_type %F.type.c14, %J.facet.085e97.2 [symbolic]
  910. // CHECK:STDOUT: %impl.elem1: %.4d2 = impl_witness_access %T.as_wit.iface0, element1 [symbolic]
  911. // CHECK:STDOUT: %specific_impl_fn: <specific function> = specific_impl_function %impl.elem1, @F.1(%J.facet.085e97.2) [symbolic]
  912. // CHECK:STDOUT: %CallGeneric.type: type = fn_type @CallGeneric [concrete]
  913. // CHECK:STDOUT: %CallGeneric: %CallGeneric.type = struct_value () [concrete]
  914. // CHECK:STDOUT: %GenericCallF.specific_fn: <specific function> = specific_function %GenericCallF, @GenericCallF(%J.facet.ccb) [concrete]
  915. // CHECK:STDOUT: }
  916. // CHECK:STDOUT:
  917. // CHECK:STDOUT: imports {
  918. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  919. // CHECK:STDOUT: .Int = %Core.Int
  920. // CHECK:STDOUT: .Add = %Core.Add
  921. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  922. // CHECK:STDOUT: import Core//prelude
  923. // CHECK:STDOUT: import Core//prelude/...
  924. // CHECK:STDOUT: }
  925. // CHECK:STDOUT: }
  926. // CHECK:STDOUT:
  927. // CHECK:STDOUT: file {
  928. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  929. // CHECK:STDOUT: .Core = imports.%Core
  930. // CHECK:STDOUT: .J = %J.decl
  931. // CHECK:STDOUT: .E = %E.decl
  932. // CHECK:STDOUT: .CallBoth = %CallBoth.decl
  933. // CHECK:STDOUT: .GenericCallF = %GenericCallF.decl
  934. // CHECK:STDOUT: .CallGeneric = %CallGeneric.decl
  935. // CHECK:STDOUT: }
  936. // CHECK:STDOUT: %Core.import = import Core
  937. // CHECK:STDOUT: %J.decl: type = interface_decl @J [concrete = constants.%J.type] {} {}
  938. // CHECK:STDOUT: %E.decl: type = class_decl @E [concrete = constants.%E] {} {}
  939. // CHECK:STDOUT: %CallBoth.decl: %CallBoth.type = fn_decl @CallBoth [concrete = constants.%CallBoth] {
  940. // CHECK:STDOUT: %e.patt: %E = binding_pattern e
  941. // CHECK:STDOUT: %e.param_patt: %E = value_param_pattern %e.patt, call_param0
  942. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  943. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, call_param1
  944. // CHECK:STDOUT: } {
  945. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  946. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  947. // CHECK:STDOUT: %e.param: %E = value_param call_param0
  948. // CHECK:STDOUT: %E.ref.loc20: type = name_ref E, file.%E.decl [concrete = constants.%E]
  949. // CHECK:STDOUT: %e: %E = bind_name e, %e.param
  950. // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param1
  951. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  952. // CHECK:STDOUT: }
  953. // CHECK:STDOUT: %GenericCallF.decl: %GenericCallF.type = fn_decl @GenericCallF [concrete = constants.%GenericCallF] {
  954. // CHECK:STDOUT: %T.patt.loc24_17.1: %J.type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc24_17.2 (constants.%T.patt)]
  955. // CHECK:STDOUT: %t.patt: @GenericCallF.%T.as_type.loc24_27.2 (%T.as_type) = binding_pattern t
  956. // CHECK:STDOUT: %t.param_patt: @GenericCallF.%T.as_type.loc24_27.2 (%T.as_type) = value_param_pattern %t.patt, call_param0
  957. // CHECK:STDOUT: %u.patt: @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2) = binding_pattern u
  958. // CHECK:STDOUT: %u.param_patt: @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2) = value_param_pattern %u.patt, call_param1
  959. // CHECK:STDOUT: %return.patt: @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2) = return_slot_pattern
  960. // CHECK:STDOUT: %return.param_patt: @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2) = out_param_pattern %return.patt, call_param2
  961. // CHECK:STDOUT: } {
  962. // CHECK:STDOUT: %T.ref.loc24_41: %J.type = name_ref T, %T.loc24_17.1 [symbolic = %T.loc24_17.2 (constants.%T)]
  963. // CHECK:STDOUT: %U.ref.loc24_42: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0.411]
  964. // CHECK:STDOUT: %T.as_type.loc24_42: type = facet_access_type %T.ref.loc24_41 [symbolic = %T.as_type.loc24_27.2 (constants.%T.as_type)]
  965. // CHECK:STDOUT: %.loc24_42: type = converted %T.ref.loc24_41, %T.as_type.loc24_42 [symbolic = %T.as_type.loc24_27.2 (constants.%T.as_type)]
  966. // CHECK:STDOUT: %T.as_wit.iface0.loc24_42: <witness> = facet_access_witness %T.ref.loc24_41, element0 [symbolic = %T.as_wit.iface0.loc24_34.2 (constants.%T.as_wit.iface0)]
  967. // CHECK:STDOUT: %impl.elem0.loc24_42: type = impl_witness_access %T.as_wit.iface0.loc24_42, element0 [symbolic = %impl.elem0.loc24_34.2 (constants.%impl.elem0.d9c3a6.2)]
  968. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  969. // CHECK:STDOUT: %T.loc24_17.1: %J.type = bind_symbolic_name T, 0 [symbolic = %T.loc24_17.2 (constants.%T)]
  970. // CHECK:STDOUT: %t.param: @GenericCallF.%T.as_type.loc24_27.2 (%T.as_type) = value_param call_param0
  971. // CHECK:STDOUT: %.loc24_27.1: type = splice_block %.loc24_27.2 [symbolic = %T.as_type.loc24_27.2 (constants.%T.as_type)] {
  972. // CHECK:STDOUT: %T.ref.loc24_27: %J.type = name_ref T, %T.loc24_17.1 [symbolic = %T.loc24_17.2 (constants.%T)]
  973. // CHECK:STDOUT: %T.as_type.loc24_27.1: type = facet_access_type %T.ref.loc24_27 [symbolic = %T.as_type.loc24_27.2 (constants.%T.as_type)]
  974. // CHECK:STDOUT: %.loc24_27.2: type = converted %T.ref.loc24_27, %T.as_type.loc24_27.1 [symbolic = %T.as_type.loc24_27.2 (constants.%T.as_type)]
  975. // CHECK:STDOUT: }
  976. // CHECK:STDOUT: %t: @GenericCallF.%T.as_type.loc24_27.2 (%T.as_type) = bind_name t, %t.param
  977. // CHECK:STDOUT: %u.param: @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2) = value_param call_param1
  978. // CHECK:STDOUT: %.loc24_34.1: type = splice_block %impl.elem0.loc24_34.1 [symbolic = %impl.elem0.loc24_34.2 (constants.%impl.elem0.d9c3a6.2)] {
  979. // CHECK:STDOUT: %T.ref.loc24_33: %J.type = name_ref T, %T.loc24_17.1 [symbolic = %T.loc24_17.2 (constants.%T)]
  980. // CHECK:STDOUT: %U.ref.loc24_34: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0.411]
  981. // CHECK:STDOUT: %T.as_type.loc24_34: type = facet_access_type %T.ref.loc24_33 [symbolic = %T.as_type.loc24_27.2 (constants.%T.as_type)]
  982. // CHECK:STDOUT: %.loc24_34.2: type = converted %T.ref.loc24_33, %T.as_type.loc24_34 [symbolic = %T.as_type.loc24_27.2 (constants.%T.as_type)]
  983. // CHECK:STDOUT: %T.as_wit.iface0.loc24_34.1: <witness> = facet_access_witness %T.ref.loc24_33, element0 [symbolic = %T.as_wit.iface0.loc24_34.2 (constants.%T.as_wit.iface0)]
  984. // CHECK:STDOUT: %impl.elem0.loc24_34.1: type = impl_witness_access %T.as_wit.iface0.loc24_34.1, element0 [symbolic = %impl.elem0.loc24_34.2 (constants.%impl.elem0.d9c3a6.2)]
  985. // CHECK:STDOUT: }
  986. // CHECK:STDOUT: %u: @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2) = bind_name u, %u.param
  987. // CHECK:STDOUT: %return.param: ref @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2) = out_param call_param2
  988. // CHECK:STDOUT: %return: ref @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2) = return_slot %return.param
  989. // CHECK:STDOUT: }
  990. // CHECK:STDOUT: %CallGeneric.decl: %CallGeneric.type = fn_decl @CallGeneric [concrete = constants.%CallGeneric] {
  991. // CHECK:STDOUT: %e.patt: %E = binding_pattern e
  992. // CHECK:STDOUT: %e.param_patt: %E = value_param_pattern %e.patt, call_param0
  993. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  994. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, call_param1
  995. // CHECK:STDOUT: } {
  996. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  997. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  998. // CHECK:STDOUT: %e.param: %E = value_param call_param0
  999. // CHECK:STDOUT: %E.ref: type = name_ref E, file.%E.decl [concrete = constants.%E]
  1000. // CHECK:STDOUT: %e: %E = bind_name e, %e.param
  1001. // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param1
  1002. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  1003. // CHECK:STDOUT: }
  1004. // CHECK:STDOUT: }
  1005. // CHECK:STDOUT:
  1006. // CHECK:STDOUT: interface @J {
  1007. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.ccd]
  1008. // CHECK:STDOUT: %U: type = assoc_const_decl @U [concrete] {
  1009. // CHECK:STDOUT: %assoc0: %J.assoc_type = assoc_entity element0, @J.%U [concrete = constants.%assoc0.411]
  1010. // CHECK:STDOUT: }
  1011. // CHECK:STDOUT: %F.decl: %F.type.c14 = fn_decl @F.1 [concrete = constants.%F.b71] {
  1012. // CHECK:STDOUT: %u.patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c3a6.1) = binding_pattern u
  1013. // CHECK:STDOUT: %u.param_patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c3a6.1) = value_param_pattern %u.patt, call_param0
  1014. // CHECK:STDOUT: %return.patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c3a6.1) = return_slot_pattern
  1015. // CHECK:STDOUT: %return.param_patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c3a6.1) = out_param_pattern %return.patt, call_param1
  1016. // CHECK:STDOUT: } {
  1017. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_17: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  1018. // CHECK:STDOUT: %impl.elem0.loc5_17: type = impl_witness_access %Self.as_wit.iface0.loc5_17, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c3a6.1)]
  1019. // CHECK:STDOUT: %U.ref.loc5_17: type = name_ref U, %impl.elem0.loc5_17 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c3a6.1)]
  1020. // CHECK:STDOUT: %u.param: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c3a6.1) = value_param call_param0
  1021. // CHECK:STDOUT: %.loc5: type = splice_block %U.ref.loc5_11 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c3a6.1)] {
  1022. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.2: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  1023. // CHECK:STDOUT: %impl.elem0.loc5_11.2: type = impl_witness_access %Self.as_wit.iface0.loc5_11.2, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c3a6.1)]
  1024. // CHECK:STDOUT: %U.ref.loc5_11: type = name_ref U, %impl.elem0.loc5_11.2 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c3a6.1)]
  1025. // CHECK:STDOUT: }
  1026. // CHECK:STDOUT: %u: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c3a6.1) = bind_name u, %u.param
  1027. // CHECK:STDOUT: %return.param: ref @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c3a6.1) = out_param call_param1
  1028. // CHECK:STDOUT: %return: ref @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c3a6.1) = return_slot %return.param
  1029. // CHECK:STDOUT: }
  1030. // CHECK:STDOUT: %assoc1: %J.assoc_type = assoc_entity element1, %F.decl [concrete = constants.%assoc1]
  1031. // CHECK:STDOUT: %G.decl: %G.type.285 = fn_decl @G.1 [concrete = constants.%G.e4b] {
  1032. // CHECK:STDOUT: %self.patt: @G.1.%Self.as_type.loc6_14.1 (%Self.as_type.3df) = binding_pattern self
  1033. // CHECK:STDOUT: %self.param_patt: @G.1.%Self.as_type.loc6_14.1 (%Self.as_type.3df) = value_param_pattern %self.patt, call_param0
  1034. // CHECK:STDOUT: %v.patt: @G.1.%impl.elem0.loc6_23.1 (%impl.elem0.d9c3a6.1) = binding_pattern v
  1035. // CHECK:STDOUT: %v.param_patt: @G.1.%impl.elem0.loc6_23.1 (%impl.elem0.d9c3a6.1) = value_param_pattern %v.patt, call_param1
  1036. // CHECK:STDOUT: %return.patt: @G.1.%impl.elem0.loc6_23.1 (%impl.elem0.d9c3a6.1) = return_slot_pattern
  1037. // CHECK:STDOUT: %return.param_patt: @G.1.%impl.elem0.loc6_23.1 (%impl.elem0.d9c3a6.1) = out_param_pattern %return.patt, call_param2
  1038. // CHECK:STDOUT: } {
  1039. // CHECK:STDOUT: %Self.as_wit.iface0.loc6_29: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc6_23.1 (constants.%Self.as_wit.iface0)]
  1040. // CHECK:STDOUT: %impl.elem0.loc6_29: type = impl_witness_access %Self.as_wit.iface0.loc6_29, element0 [symbolic = %impl.elem0.loc6_23.1 (constants.%impl.elem0.d9c3a6.1)]
  1041. // CHECK:STDOUT: %U.ref.loc6_29: type = name_ref U, %impl.elem0.loc6_29 [symbolic = %impl.elem0.loc6_23.1 (constants.%impl.elem0.d9c3a6.1)]
  1042. // CHECK:STDOUT: %self.param: @G.1.%Self.as_type.loc6_14.1 (%Self.as_type.3df) = value_param call_param0
  1043. // CHECK:STDOUT: %.loc6_14.1: type = splice_block %.loc6_14.2 [symbolic = %Self.as_type.loc6_14.1 (constants.%Self.as_type.3df)] {
  1044. // CHECK:STDOUT: %Self.ref: %J.type = name_ref Self, @J.%Self [symbolic = %Self (constants.%Self.ccd)]
  1045. // CHECK:STDOUT: %Self.as_type.loc6_14.2: type = facet_access_type %Self.ref [symbolic = %Self.as_type.loc6_14.1 (constants.%Self.as_type.3df)]
  1046. // CHECK:STDOUT: %.loc6_14.2: type = converted %Self.ref, %Self.as_type.loc6_14.2 [symbolic = %Self.as_type.loc6_14.1 (constants.%Self.as_type.3df)]
  1047. // CHECK:STDOUT: }
  1048. // CHECK:STDOUT: %self: @G.1.%Self.as_type.loc6_14.1 (%Self.as_type.3df) = bind_name self, %self.param
  1049. // CHECK:STDOUT: %v.param: @G.1.%impl.elem0.loc6_23.1 (%impl.elem0.d9c3a6.1) = value_param call_param1
  1050. // CHECK:STDOUT: %.loc6_23: type = splice_block %U.ref.loc6_23 [symbolic = %impl.elem0.loc6_23.1 (constants.%impl.elem0.d9c3a6.1)] {
  1051. // CHECK:STDOUT: %Self.as_wit.iface0.loc6_23.2: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc6_23.1 (constants.%Self.as_wit.iface0)]
  1052. // CHECK:STDOUT: %impl.elem0.loc6_23.2: type = impl_witness_access %Self.as_wit.iface0.loc6_23.2, element0 [symbolic = %impl.elem0.loc6_23.1 (constants.%impl.elem0.d9c3a6.1)]
  1053. // CHECK:STDOUT: %U.ref.loc6_23: type = name_ref U, %impl.elem0.loc6_23.2 [symbolic = %impl.elem0.loc6_23.1 (constants.%impl.elem0.d9c3a6.1)]
  1054. // CHECK:STDOUT: }
  1055. // CHECK:STDOUT: %v: @G.1.%impl.elem0.loc6_23.1 (%impl.elem0.d9c3a6.1) = bind_name v, %v.param
  1056. // CHECK:STDOUT: %return.param: ref @G.1.%impl.elem0.loc6_23.1 (%impl.elem0.d9c3a6.1) = out_param call_param2
  1057. // CHECK:STDOUT: %return: ref @G.1.%impl.elem0.loc6_23.1 (%impl.elem0.d9c3a6.1) = return_slot %return.param
  1058. // CHECK:STDOUT: }
  1059. // CHECK:STDOUT: %assoc2: %J.assoc_type = assoc_entity element2, %G.decl [concrete = constants.%assoc2]
  1060. // CHECK:STDOUT:
  1061. // CHECK:STDOUT: !members:
  1062. // CHECK:STDOUT: .Self = %Self
  1063. // CHECK:STDOUT: .U = @U.%assoc0
  1064. // CHECK:STDOUT: .F = %assoc1
  1065. // CHECK:STDOUT: .G = %assoc2
  1066. // CHECK:STDOUT: witness = (%U, %F.decl, %G.decl)
  1067. // CHECK:STDOUT: }
  1068. // CHECK:STDOUT:
  1069. // CHECK:STDOUT: generic assoc_const @U(@J.%Self: %J.type) {
  1070. // CHECK:STDOUT: assoc_const U:! type;
  1071. // CHECK:STDOUT: }
  1072. // CHECK:STDOUT:
  1073. // CHECK:STDOUT: impl @impl.2dd: %Self.ref as %.loc10_20 {
  1074. // CHECK:STDOUT: %F.decl: %F.type.e5e = fn_decl @F.2 [concrete = constants.%F.c81] {
  1075. // CHECK:STDOUT: %u.patt: %i32 = binding_pattern u
  1076. // CHECK:STDOUT: %u.param_patt: %i32 = value_param_pattern %u.patt, call_param0
  1077. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  1078. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, call_param1
  1079. // CHECK:STDOUT: } {
  1080. // CHECK:STDOUT: %int_32.loc11_21: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  1081. // CHECK:STDOUT: %i32.loc11_21: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  1082. // CHECK:STDOUT: %u.param: %i32 = value_param call_param0
  1083. // CHECK:STDOUT: %.loc11: type = splice_block %i32.loc11_13 [concrete = constants.%i32] {
  1084. // CHECK:STDOUT: %int_32.loc11_13: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  1085. // CHECK:STDOUT: %i32.loc11_13: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  1086. // CHECK:STDOUT: }
  1087. // CHECK:STDOUT: %u: %i32 = bind_name u, %u.param
  1088. // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param1
  1089. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  1090. // CHECK:STDOUT: }
  1091. // CHECK:STDOUT: %G.decl: %G.type.89e = fn_decl @G.2 [concrete = constants.%G.105] {
  1092. // CHECK:STDOUT: %self.patt: %E = binding_pattern self
  1093. // CHECK:STDOUT: %self.param_patt: %E = value_param_pattern %self.patt, call_param0
  1094. // CHECK:STDOUT: %v.patt: %i32 = binding_pattern v
  1095. // CHECK:STDOUT: %v.param_patt: %i32 = value_param_pattern %v.patt, call_param1
  1096. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  1097. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, call_param2
  1098. // CHECK:STDOUT: } {
  1099. // CHECK:STDOUT: %int_32.loc14_33: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  1100. // CHECK:STDOUT: %i32.loc14_33: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  1101. // CHECK:STDOUT: %self.param: %E = value_param call_param0
  1102. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%E [concrete = constants.%E]
  1103. // CHECK:STDOUT: %self: %E = bind_name self, %self.param
  1104. // CHECK:STDOUT: %v.param: %i32 = value_param call_param1
  1105. // CHECK:STDOUT: %.loc14: type = splice_block %i32.loc14_25 [concrete = constants.%i32] {
  1106. // CHECK:STDOUT: %int_32.loc14_25: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  1107. // CHECK:STDOUT: %i32.loc14_25: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  1108. // CHECK:STDOUT: }
  1109. // CHECK:STDOUT: %v: %i32 = bind_name v, %v.param
  1110. // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param2
  1111. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  1112. // CHECK:STDOUT: }
  1113. // CHECK:STDOUT:
  1114. // CHECK:STDOUT: !members:
  1115. // CHECK:STDOUT: .F = %F.decl
  1116. // CHECK:STDOUT: .G = %G.decl
  1117. // CHECK:STDOUT: witness = @E.%impl_witness
  1118. // CHECK:STDOUT: }
  1119. // CHECK:STDOUT:
  1120. // CHECK:STDOUT: class @E {
  1121. // CHECK:STDOUT: impl_decl @impl.2dd [concrete] {} {
  1122. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%E [concrete = constants.%E]
  1123. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  1124. // CHECK:STDOUT: %.Self: %J.type = bind_symbolic_name .Self [symbolic_self = constants.%.Self]
  1125. // CHECK:STDOUT: %.Self.ref: %J.type = name_ref .Self, %.Self [symbolic_self = constants.%.Self]
  1126. // CHECK:STDOUT: %U.ref: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0.411]
  1127. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self.ref [symbolic_self = constants.%.Self.as_type]
  1128. // CHECK:STDOUT: %.loc10_26: type = converted %.Self.ref, %.Self.as_type [symbolic_self = constants.%.Self.as_type]
  1129. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self.ref, element0 [symbolic_self = constants.%.Self.as_wit.iface0]
  1130. // CHECK:STDOUT: %impl.elem0: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self = constants.%impl.elem0.53a]
  1131. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  1132. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  1133. // CHECK:STDOUT: %.loc10_20: type = where_expr %.Self [concrete = constants.%J_where.type] {
  1134. // CHECK:STDOUT: requirement_rewrite %impl.elem0, %i32
  1135. // CHECK:STDOUT: }
  1136. // CHECK:STDOUT: }
  1137. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (constants.%i32, @impl.2dd.%F.decl, @impl.2dd.%G.decl) [concrete = constants.%impl_witness.71e]
  1138. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1139. // CHECK:STDOUT: complete_type_witness = %complete_type
  1140. // CHECK:STDOUT:
  1141. // CHECK:STDOUT: !members:
  1142. // CHECK:STDOUT: .Self = constants.%E
  1143. // CHECK:STDOUT: .J = <poisoned>
  1144. // CHECK:STDOUT: .F = <poisoned>
  1145. // CHECK:STDOUT: .G = <poisoned>
  1146. // CHECK:STDOUT: extend @impl.2dd.%.loc10_20
  1147. // CHECK:STDOUT: }
  1148. // CHECK:STDOUT:
  1149. // CHECK:STDOUT: generic fn @F.1(@J.%Self: %J.type) {
  1150. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self.ccd)]
  1151. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1: <witness> = facet_access_witness %Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  1152. // CHECK:STDOUT: %impl.elem0.loc5_11.1: type = impl_witness_access %Self.as_wit.iface0.loc5_11.1, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c3a6.1)]
  1153. // CHECK:STDOUT:
  1154. // CHECK:STDOUT: fn(%u.param_patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c3a6.1)) -> @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c3a6.1);
  1155. // CHECK:STDOUT: }
  1156. // CHECK:STDOUT:
  1157. // CHECK:STDOUT: generic fn @G.1(@J.%Self: %J.type) {
  1158. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self.ccd)]
  1159. // CHECK:STDOUT: %Self.as_type.loc6_14.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc6_14.1 (constants.%Self.as_type.3df)]
  1160. // CHECK:STDOUT: %Self.as_wit.iface0.loc6_23.1: <witness> = facet_access_witness %Self, element0 [symbolic = %Self.as_wit.iface0.loc6_23.1 (constants.%Self.as_wit.iface0)]
  1161. // CHECK:STDOUT: %impl.elem0.loc6_23.1: type = impl_witness_access %Self.as_wit.iface0.loc6_23.1, element0 [symbolic = %impl.elem0.loc6_23.1 (constants.%impl.elem0.d9c3a6.1)]
  1162. // CHECK:STDOUT:
  1163. // CHECK:STDOUT: fn[%self.param_patt: @G.1.%Self.as_type.loc6_14.1 (%Self.as_type.3df)](%v.param_patt: @G.1.%impl.elem0.loc6_23.1 (%impl.elem0.d9c3a6.1)) -> @G.1.%impl.elem0.loc6_23.1 (%impl.elem0.d9c3a6.1);
  1164. // CHECK:STDOUT: }
  1165. // CHECK:STDOUT:
  1166. // CHECK:STDOUT: fn @F.2(%u.param_patt: %i32) -> %i32 {
  1167. // CHECK:STDOUT: !entry:
  1168. // CHECK:STDOUT: %u.ref: %i32 = name_ref u, %u
  1169. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [concrete = constants.%int_1.5b8]
  1170. // CHECK:STDOUT: %impl.elem0.loc12_16: %.f1a = impl_witness_access constants.%impl_witness.01d, element0 [concrete = constants.%Op.c82]
  1171. // CHECK:STDOUT: %bound_method.loc12_16.1: <bound method> = bound_method %u.ref, %impl.elem0.loc12_16
  1172. // CHECK:STDOUT: %specific_fn.loc12_16: <specific function> = specific_function %impl.elem0.loc12_16, @Op.2(constants.%int_32) [concrete = constants.%Op.specific_fn]
  1173. // CHECK:STDOUT: %bound_method.loc12_16.2: <bound method> = bound_method %u.ref, %specific_fn.loc12_16
  1174. // CHECK:STDOUT: %impl.elem0.loc12_18: %.be7 = impl_witness_access constants.%impl_witness.d39, element0 [concrete = constants.%Convert.956]
  1175. // CHECK:STDOUT: %bound_method.loc12_18.1: <bound method> = bound_method %int_1, %impl.elem0.loc12_18 [concrete = constants.%Convert.bound.ab5]
  1176. // CHECK:STDOUT: %specific_fn.loc12_18: <specific function> = specific_function %impl.elem0.loc12_18, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  1177. // CHECK:STDOUT: %bound_method.loc12_18.2: <bound method> = bound_method %int_1, %specific_fn.loc12_18 [concrete = constants.%bound_method.9a1]
  1178. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %bound_method.loc12_18.2(%int_1) [concrete = constants.%int_1.5d2]
  1179. // CHECK:STDOUT: %.loc12_18.1: %i32 = value_of_initializer %int.convert_checked [concrete = constants.%int_1.5d2]
  1180. // CHECK:STDOUT: %.loc12_18.2: %i32 = converted %int_1, %.loc12_18.1 [concrete = constants.%int_1.5d2]
  1181. // CHECK:STDOUT: %int.sadd: init %i32 = call %bound_method.loc12_16.2(%u.ref, %.loc12_18.2)
  1182. // CHECK:STDOUT: %.loc12_19.1: %i32 = value_of_initializer %int.sadd
  1183. // CHECK:STDOUT: %.loc12_19.2: %i32 = converted %int.sadd, %.loc12_19.1
  1184. // CHECK:STDOUT: return %.loc12_19.2
  1185. // CHECK:STDOUT: }
  1186. // CHECK:STDOUT:
  1187. // CHECK:STDOUT: fn @G.2[%self.param_patt: %E](%v.param_patt: %i32) -> %i32 {
  1188. // CHECK:STDOUT: !entry:
  1189. // CHECK:STDOUT: %v.ref: %i32 = name_ref v, %v
  1190. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [concrete = constants.%int_2.ecc]
  1191. // CHECK:STDOUT: %impl.elem0.loc15_16: %.f1a = impl_witness_access constants.%impl_witness.01d, element0 [concrete = constants.%Op.c82]
  1192. // CHECK:STDOUT: %bound_method.loc15_16.1: <bound method> = bound_method %v.ref, %impl.elem0.loc15_16
  1193. // CHECK:STDOUT: %specific_fn.loc15_16: <specific function> = specific_function %impl.elem0.loc15_16, @Op.2(constants.%int_32) [concrete = constants.%Op.specific_fn]
  1194. // CHECK:STDOUT: %bound_method.loc15_16.2: <bound method> = bound_method %v.ref, %specific_fn.loc15_16
  1195. // CHECK:STDOUT: %impl.elem0.loc15_18: %.be7 = impl_witness_access constants.%impl_witness.d39, element0 [concrete = constants.%Convert.956]
  1196. // CHECK:STDOUT: %bound_method.loc15_18.1: <bound method> = bound_method %int_2, %impl.elem0.loc15_18 [concrete = constants.%Convert.bound.ef9]
  1197. // CHECK:STDOUT: %specific_fn.loc15_18: <specific function> = specific_function %impl.elem0.loc15_18, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  1198. // CHECK:STDOUT: %bound_method.loc15_18.2: <bound method> = bound_method %int_2, %specific_fn.loc15_18 [concrete = constants.%bound_method.b92]
  1199. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %bound_method.loc15_18.2(%int_2) [concrete = constants.%int_2.ef8]
  1200. // CHECK:STDOUT: %.loc15_18.1: %i32 = value_of_initializer %int.convert_checked [concrete = constants.%int_2.ef8]
  1201. // CHECK:STDOUT: %.loc15_18.2: %i32 = converted %int_2, %.loc15_18.1 [concrete = constants.%int_2.ef8]
  1202. // CHECK:STDOUT: %int.sadd: init %i32 = call %bound_method.loc15_16.2(%v.ref, %.loc15_18.2)
  1203. // CHECK:STDOUT: %.loc15_19.1: %i32 = value_of_initializer %int.sadd
  1204. // CHECK:STDOUT: %.loc15_19.2: %i32 = converted %int.sadd, %.loc15_19.1
  1205. // CHECK:STDOUT: return %.loc15_19.2
  1206. // CHECK:STDOUT: }
  1207. // CHECK:STDOUT:
  1208. // CHECK:STDOUT: fn @CallBoth(%e.param_patt: %E) -> %i32 {
  1209. // CHECK:STDOUT: !entry:
  1210. // CHECK:STDOUT: %e.ref.loc21_10: %E = name_ref e, %e
  1211. // CHECK:STDOUT: %F.ref.loc21_11: %J.assoc_type = name_ref F, @J.%assoc1 [concrete = constants.%assoc1]
  1212. // CHECK:STDOUT: %impl.elem1.loc21_11: %.dea = impl_witness_access constants.%impl_witness.71e, element1 [concrete = constants.%F.c81]
  1213. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [concrete = constants.%int_2.ecc]
  1214. // CHECK:STDOUT: %impl.elem0.loc21_14: %.be7 = impl_witness_access constants.%impl_witness.d39, element0 [concrete = constants.%Convert.956]
  1215. // CHECK:STDOUT: %bound_method.loc21_14.1: <bound method> = bound_method %int_2, %impl.elem0.loc21_14 [concrete = constants.%Convert.bound.ef9]
  1216. // CHECK:STDOUT: %specific_fn.loc21_14: <specific function> = specific_function %impl.elem0.loc21_14, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  1217. // CHECK:STDOUT: %bound_method.loc21_14.2: <bound method> = bound_method %int_2, %specific_fn.loc21_14 [concrete = constants.%bound_method.b92]
  1218. // CHECK:STDOUT: %int.convert_checked.loc21_14: init %i32 = call %bound_method.loc21_14.2(%int_2) [concrete = constants.%int_2.ef8]
  1219. // CHECK:STDOUT: %.loc21_14.1: %i32 = value_of_initializer %int.convert_checked.loc21_14 [concrete = constants.%int_2.ef8]
  1220. // CHECK:STDOUT: %.loc21_14.2: %i32 = converted %int_2, %.loc21_14.1 [concrete = constants.%int_2.ef8]
  1221. // CHECK:STDOUT: %F.call.loc21_15: init %i32 = call %impl.elem1.loc21_11(%.loc21_14.2)
  1222. // CHECK:STDOUT: %e.ref.loc21_19: %E = name_ref e, %e
  1223. // CHECK:STDOUT: %G.ref.loc21_20: %J.assoc_type = name_ref G, @J.%assoc2 [concrete = constants.%assoc2]
  1224. // CHECK:STDOUT: %impl.elem2.loc21_20: %.4bc = impl_witness_access constants.%impl_witness.71e, element2 [concrete = constants.%G.105]
  1225. // CHECK:STDOUT: %bound_method.loc21_20: <bound method> = bound_method %e.ref.loc21_19, %impl.elem2.loc21_20
  1226. // CHECK:STDOUT: %int_3: Core.IntLiteral = int_value 3 [concrete = constants.%int_3.1ba]
  1227. // CHECK:STDOUT: %impl.elem0.loc21_23: %.be7 = impl_witness_access constants.%impl_witness.d39, element0 [concrete = constants.%Convert.956]
  1228. // CHECK:STDOUT: %bound_method.loc21_23.1: <bound method> = bound_method %int_3, %impl.elem0.loc21_23 [concrete = constants.%Convert.bound.b30]
  1229. // CHECK:STDOUT: %specific_fn.loc21_23: <specific function> = specific_function %impl.elem0.loc21_23, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  1230. // CHECK:STDOUT: %bound_method.loc21_23.2: <bound method> = bound_method %int_3, %specific_fn.loc21_23 [concrete = constants.%bound_method.047]
  1231. // CHECK:STDOUT: %int.convert_checked.loc21_23: init %i32 = call %bound_method.loc21_23.2(%int_3) [concrete = constants.%int_3.822]
  1232. // CHECK:STDOUT: %.loc21_23.1: %i32 = value_of_initializer %int.convert_checked.loc21_23 [concrete = constants.%int_3.822]
  1233. // CHECK:STDOUT: %.loc21_23.2: %i32 = converted %int_3, %.loc21_23.1 [concrete = constants.%int_3.822]
  1234. // CHECK:STDOUT: %G.call.loc21_24: init %i32 = call %bound_method.loc21_20(%e.ref.loc21_19, %.loc21_23.2)
  1235. // CHECK:STDOUT: %impl.elem0.loc21_17: %.f1a = impl_witness_access constants.%impl_witness.01d, element0 [concrete = constants.%Op.c82]
  1236. // CHECK:STDOUT: %bound_method.loc21_17.1: <bound method> = bound_method %F.call.loc21_15, %impl.elem0.loc21_17
  1237. // CHECK:STDOUT: %specific_fn.loc21_17: <specific function> = specific_function %impl.elem0.loc21_17, @Op.2(constants.%int_32) [concrete = constants.%Op.specific_fn]
  1238. // CHECK:STDOUT: %bound_method.loc21_17.2: <bound method> = bound_method %F.call.loc21_15, %specific_fn.loc21_17
  1239. // CHECK:STDOUT: %.loc21_15.1: %i32 = value_of_initializer %F.call.loc21_15
  1240. // CHECK:STDOUT: %.loc21_15.2: %i32 = converted %F.call.loc21_15, %.loc21_15.1
  1241. // CHECK:STDOUT: %.loc21_24.1: %i32 = value_of_initializer %G.call.loc21_24
  1242. // CHECK:STDOUT: %.loc21_24.2: %i32 = converted %G.call.loc21_24, %.loc21_24.1
  1243. // CHECK:STDOUT: %int.sadd.loc21_17: init %i32 = call %bound_method.loc21_17.2(%.loc21_15.2, %.loc21_24.2)
  1244. // CHECK:STDOUT: %E.ref.loc21_28: type = name_ref E, file.%E.decl [concrete = constants.%E]
  1245. // CHECK:STDOUT: %F.ref.loc21_29: %J.assoc_type = name_ref F, @J.%assoc1 [concrete = constants.%assoc1]
  1246. // CHECK:STDOUT: %impl.elem1.loc21_29: %.dea = impl_witness_access constants.%impl_witness.71e, element1 [concrete = constants.%F.c81]
  1247. // CHECK:STDOUT: %int_4: Core.IntLiteral = int_value 4 [concrete = constants.%int_4.0c1]
  1248. // CHECK:STDOUT: %impl.elem0.loc21_32: %.be7 = impl_witness_access constants.%impl_witness.d39, element0 [concrete = constants.%Convert.956]
  1249. // CHECK:STDOUT: %bound_method.loc21_32.1: <bound method> = bound_method %int_4, %impl.elem0.loc21_32 [concrete = constants.%Convert.bound.ac3]
  1250. // CHECK:STDOUT: %specific_fn.loc21_32: <specific function> = specific_function %impl.elem0.loc21_32, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  1251. // CHECK:STDOUT: %bound_method.loc21_32.2: <bound method> = bound_method %int_4, %specific_fn.loc21_32 [concrete = constants.%bound_method.1da]
  1252. // CHECK:STDOUT: %int.convert_checked.loc21_32: init %i32 = call %bound_method.loc21_32.2(%int_4) [concrete = constants.%int_4.940]
  1253. // CHECK:STDOUT: %.loc21_32.1: %i32 = value_of_initializer %int.convert_checked.loc21_32 [concrete = constants.%int_4.940]
  1254. // CHECK:STDOUT: %.loc21_32.2: %i32 = converted %int_4, %.loc21_32.1 [concrete = constants.%int_4.940]
  1255. // CHECK:STDOUT: %F.call.loc21_33: init %i32 = call %impl.elem1.loc21_29(%.loc21_32.2)
  1256. // CHECK:STDOUT: %impl.elem0.loc21_26: %.f1a = impl_witness_access constants.%impl_witness.01d, element0 [concrete = constants.%Op.c82]
  1257. // CHECK:STDOUT: %bound_method.loc21_26.1: <bound method> = bound_method %int.sadd.loc21_17, %impl.elem0.loc21_26
  1258. // CHECK:STDOUT: %specific_fn.loc21_26: <specific function> = specific_function %impl.elem0.loc21_26, @Op.2(constants.%int_32) [concrete = constants.%Op.specific_fn]
  1259. // CHECK:STDOUT: %bound_method.loc21_26.2: <bound method> = bound_method %int.sadd.loc21_17, %specific_fn.loc21_26
  1260. // CHECK:STDOUT: %.loc21_17.1: %i32 = value_of_initializer %int.sadd.loc21_17
  1261. // CHECK:STDOUT: %.loc21_17.2: %i32 = converted %int.sadd.loc21_17, %.loc21_17.1
  1262. // CHECK:STDOUT: %.loc21_33.1: %i32 = value_of_initializer %F.call.loc21_33
  1263. // CHECK:STDOUT: %.loc21_33.2: %i32 = converted %F.call.loc21_33, %.loc21_33.1
  1264. // CHECK:STDOUT: %int.sadd.loc21_26: init %i32 = call %bound_method.loc21_26.2(%.loc21_17.2, %.loc21_33.2)
  1265. // CHECK:STDOUT: %e.ref.loc21_37: %E = name_ref e, %e
  1266. // CHECK:STDOUT: %E.ref.loc21_40: type = name_ref E, file.%E.decl [concrete = constants.%E]
  1267. // CHECK:STDOUT: %G.ref.loc21_41: %J.assoc_type = name_ref G, @J.%assoc2 [concrete = constants.%assoc2]
  1268. // CHECK:STDOUT: %impl.elem2.loc21_41: %.4bc = impl_witness_access constants.%impl_witness.71e, element2 [concrete = constants.%G.105]
  1269. // CHECK:STDOUT: %bound_method.loc21_38: <bound method> = bound_method %e.ref.loc21_37, %impl.elem2.loc21_41
  1270. // CHECK:STDOUT: %int_5: Core.IntLiteral = int_value 5 [concrete = constants.%int_5.64b]
  1271. // CHECK:STDOUT: %impl.elem0.loc21_45: %.be7 = impl_witness_access constants.%impl_witness.d39, element0 [concrete = constants.%Convert.956]
  1272. // CHECK:STDOUT: %bound_method.loc21_45.1: <bound method> = bound_method %int_5, %impl.elem0.loc21_45 [concrete = constants.%Convert.bound.4e6]
  1273. // CHECK:STDOUT: %specific_fn.loc21_45: <specific function> = specific_function %impl.elem0.loc21_45, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  1274. // CHECK:STDOUT: %bound_method.loc21_45.2: <bound method> = bound_method %int_5, %specific_fn.loc21_45 [concrete = constants.%bound_method.a25]
  1275. // CHECK:STDOUT: %int.convert_checked.loc21_45: init %i32 = call %bound_method.loc21_45.2(%int_5) [concrete = constants.%int_5.0f6]
  1276. // CHECK:STDOUT: %.loc21_45.1: %i32 = value_of_initializer %int.convert_checked.loc21_45 [concrete = constants.%int_5.0f6]
  1277. // CHECK:STDOUT: %.loc21_45.2: %i32 = converted %int_5, %.loc21_45.1 [concrete = constants.%int_5.0f6]
  1278. // CHECK:STDOUT: %G.call.loc21_46: init %i32 = call %bound_method.loc21_38(%e.ref.loc21_37, %.loc21_45.2)
  1279. // CHECK:STDOUT: %impl.elem0.loc21_35: %.f1a = impl_witness_access constants.%impl_witness.01d, element0 [concrete = constants.%Op.c82]
  1280. // CHECK:STDOUT: %bound_method.loc21_35.1: <bound method> = bound_method %int.sadd.loc21_26, %impl.elem0.loc21_35
  1281. // CHECK:STDOUT: %specific_fn.loc21_35: <specific function> = specific_function %impl.elem0.loc21_35, @Op.2(constants.%int_32) [concrete = constants.%Op.specific_fn]
  1282. // CHECK:STDOUT: %bound_method.loc21_35.2: <bound method> = bound_method %int.sadd.loc21_26, %specific_fn.loc21_35
  1283. // CHECK:STDOUT: %.loc21_26.1: %i32 = value_of_initializer %int.sadd.loc21_26
  1284. // CHECK:STDOUT: %.loc21_26.2: %i32 = converted %int.sadd.loc21_26, %.loc21_26.1
  1285. // CHECK:STDOUT: %.loc21_46.1: %i32 = value_of_initializer %G.call.loc21_46
  1286. // CHECK:STDOUT: %.loc21_46.2: %i32 = converted %G.call.loc21_46, %.loc21_46.1
  1287. // CHECK:STDOUT: %int.sadd.loc21_35: init %i32 = call %bound_method.loc21_35.2(%.loc21_26.2, %.loc21_46.2)
  1288. // CHECK:STDOUT: %e.ref.loc21_50: %E = name_ref e, %e
  1289. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  1290. // CHECK:STDOUT: %G.ref.loc21_54: %J.assoc_type = name_ref G, @J.%assoc2 [concrete = constants.%assoc2]
  1291. // CHECK:STDOUT: %impl.elem2.loc21_51: %.4bc = impl_witness_access constants.%impl_witness.71e, element2 [concrete = constants.%G.105]
  1292. // CHECK:STDOUT: %bound_method.loc21_51: <bound method> = bound_method %e.ref.loc21_50, %impl.elem2.loc21_51
  1293. // CHECK:STDOUT: %int_6: Core.IntLiteral = int_value 6 [concrete = constants.%int_6.462]
  1294. // CHECK:STDOUT: %impl.elem0.loc21_58: %.be7 = impl_witness_access constants.%impl_witness.d39, element0 [concrete = constants.%Convert.956]
  1295. // CHECK:STDOUT: %bound_method.loc21_58.1: <bound method> = bound_method %int_6, %impl.elem0.loc21_58 [concrete = constants.%Convert.bound.ce9]
  1296. // CHECK:STDOUT: %specific_fn.loc21_58: <specific function> = specific_function %impl.elem0.loc21_58, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  1297. // CHECK:STDOUT: %bound_method.loc21_58.2: <bound method> = bound_method %int_6, %specific_fn.loc21_58 [concrete = constants.%bound_method.efa]
  1298. // CHECK:STDOUT: %int.convert_checked.loc21_58: init %i32 = call %bound_method.loc21_58.2(%int_6) [concrete = constants.%int_6.e56]
  1299. // CHECK:STDOUT: %.loc21_58.1: %i32 = value_of_initializer %int.convert_checked.loc21_58 [concrete = constants.%int_6.e56]
  1300. // CHECK:STDOUT: %.loc21_58.2: %i32 = converted %int_6, %.loc21_58.1 [concrete = constants.%int_6.e56]
  1301. // CHECK:STDOUT: %G.call.loc21_59: init %i32 = call %bound_method.loc21_51(%e.ref.loc21_50, %.loc21_58.2)
  1302. // CHECK:STDOUT: %impl.elem0.loc21_48: %.f1a = impl_witness_access constants.%impl_witness.01d, element0 [concrete = constants.%Op.c82]
  1303. // CHECK:STDOUT: %bound_method.loc21_48.1: <bound method> = bound_method %int.sadd.loc21_35, %impl.elem0.loc21_48
  1304. // CHECK:STDOUT: %specific_fn.loc21_48: <specific function> = specific_function %impl.elem0.loc21_48, @Op.2(constants.%int_32) [concrete = constants.%Op.specific_fn]
  1305. // CHECK:STDOUT: %bound_method.loc21_48.2: <bound method> = bound_method %int.sadd.loc21_35, %specific_fn.loc21_48
  1306. // CHECK:STDOUT: %.loc21_35.1: %i32 = value_of_initializer %int.sadd.loc21_35
  1307. // CHECK:STDOUT: %.loc21_35.2: %i32 = converted %int.sadd.loc21_35, %.loc21_35.1
  1308. // CHECK:STDOUT: %.loc21_59.1: %i32 = value_of_initializer %G.call.loc21_59
  1309. // CHECK:STDOUT: %.loc21_59.2: %i32 = converted %G.call.loc21_59, %.loc21_59.1
  1310. // CHECK:STDOUT: %int.sadd.loc21_48: init %i32 = call %bound_method.loc21_48.2(%.loc21_35.2, %.loc21_59.2)
  1311. // CHECK:STDOUT: %.loc21_60.1: %i32 = value_of_initializer %int.sadd.loc21_48
  1312. // CHECK:STDOUT: %.loc21_60.2: %i32 = converted %int.sadd.loc21_48, %.loc21_60.1
  1313. // CHECK:STDOUT: return %.loc21_60.2
  1314. // CHECK:STDOUT: }
  1315. // CHECK:STDOUT:
  1316. // CHECK:STDOUT: generic fn @GenericCallF(%T.loc24_17.1: %J.type) {
  1317. // CHECK:STDOUT: %T.loc24_17.2: %J.type = bind_symbolic_name T, 0 [symbolic = %T.loc24_17.2 (constants.%T)]
  1318. // CHECK:STDOUT: %T.patt.loc24_17.2: %J.type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc24_17.2 (constants.%T.patt)]
  1319. // CHECK:STDOUT: %T.as_type.loc24_27.2: type = facet_access_type %T.loc24_17.2 [symbolic = %T.as_type.loc24_27.2 (constants.%T.as_type)]
  1320. // CHECK:STDOUT: %T.as_wit.iface0.loc24_34.2: <witness> = facet_access_witness %T.loc24_17.2, element0 [symbolic = %T.as_wit.iface0.loc24_34.2 (constants.%T.as_wit.iface0)]
  1321. // CHECK:STDOUT: %impl.elem0.loc24_34.2: type = impl_witness_access %T.as_wit.iface0.loc24_34.2, element0 [symbolic = %impl.elem0.loc24_34.2 (constants.%impl.elem0.d9c3a6.2)]
  1322. // CHECK:STDOUT:
  1323. // CHECK:STDOUT: !definition:
  1324. // CHECK:STDOUT: %require_complete.loc24_38: <witness> = require_complete_type @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2) [symbolic = %require_complete.loc24_38 (constants.%require_complete.d9a)]
  1325. // CHECK:STDOUT: %require_complete.loc24_25: <witness> = require_complete_type @GenericCallF.%T.as_type.loc24_27.2 (%T.as_type) [symbolic = %require_complete.loc24_25 (constants.%require_complete.2a5)]
  1326. // CHECK:STDOUT: %J.facet: %J.type = facet_value %T.as_type.loc24_27.2, (%T.as_wit.iface0.loc24_34.2) [symbolic = %J.facet (constants.%J.facet.085e97.2)]
  1327. // CHECK:STDOUT: %.loc25_11.2: type = fn_type_with_self_type constants.%F.type.c14, %J.facet [symbolic = %.loc25_11.2 (constants.%.4d2)]
  1328. // CHECK:STDOUT: %impl.elem1.loc25_11.2: @GenericCallF.%.loc25_11.2 (%.4d2) = impl_witness_access %T.as_wit.iface0.loc24_34.2, element1 [symbolic = %impl.elem1.loc25_11.2 (constants.%impl.elem1)]
  1329. // CHECK:STDOUT: %specific_impl_fn.loc25_11.2: <specific function> = specific_impl_function %impl.elem1.loc25_11.2, @F.1(%J.facet) [symbolic = %specific_impl_fn.loc25_11.2 (constants.%specific_impl_fn)]
  1330. // CHECK:STDOUT:
  1331. // CHECK:STDOUT: fn[%T.patt.loc24_17.1: %J.type](%t.param_patt: @GenericCallF.%T.as_type.loc24_27.2 (%T.as_type), %u.param_patt: @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2)) -> @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2) {
  1332. // CHECK:STDOUT: !entry:
  1333. // CHECK:STDOUT: %t.ref: @GenericCallF.%T.as_type.loc24_27.2 (%T.as_type) = name_ref t, %t
  1334. // CHECK:STDOUT: %F.ref: %J.assoc_type = name_ref F, @J.%assoc1 [concrete = constants.%assoc1]
  1335. // CHECK:STDOUT: %T.as_type.loc25: type = facet_access_type constants.%T [symbolic = %T.as_type.loc24_27.2 (constants.%T.as_type)]
  1336. // CHECK:STDOUT: %.loc25_11.1: type = converted constants.%T, %T.as_type.loc25 [symbolic = %T.as_type.loc24_27.2 (constants.%T.as_type)]
  1337. // CHECK:STDOUT: %T.as_wit.iface0.loc25: <witness> = facet_access_witness constants.%T, element0 [symbolic = %T.as_wit.iface0.loc24_34.2 (constants.%T.as_wit.iface0)]
  1338. // CHECK:STDOUT: %impl.elem1.loc25_11.1: @GenericCallF.%.loc25_11.2 (%.4d2) = impl_witness_access %T.as_wit.iface0.loc25, element1 [symbolic = %impl.elem1.loc25_11.2 (constants.%impl.elem1)]
  1339. // CHECK:STDOUT: %u.ref: @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2) = name_ref u, %u
  1340. // CHECK:STDOUT: %specific_impl_fn.loc25_11.1: <specific function> = specific_impl_function %impl.elem1.loc25_11.1, @F.1(constants.%J.facet.085e97.2) [symbolic = %specific_impl_fn.loc25_11.2 (constants.%specific_impl_fn)]
  1341. // CHECK:STDOUT: %.loc25_15: init @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2) = call %specific_impl_fn.loc25_11.1(%u.ref)
  1342. // CHECK:STDOUT: %.loc25_16.1: @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2) = value_of_initializer %.loc25_15
  1343. // CHECK:STDOUT: %.loc25_16.2: @GenericCallF.%impl.elem0.loc24_34.2 (%impl.elem0.d9c3a6.2) = converted %.loc25_15, %.loc25_16.1
  1344. // CHECK:STDOUT: return %.loc25_16.2
  1345. // CHECK:STDOUT: }
  1346. // CHECK:STDOUT: }
  1347. // CHECK:STDOUT:
  1348. // CHECK:STDOUT: fn @CallGeneric(%e.param_patt: %E) -> %i32 {
  1349. // CHECK:STDOUT: !entry:
  1350. // CHECK:STDOUT: %GenericCallF.ref: %GenericCallF.type = name_ref GenericCallF, file.%GenericCallF.decl [concrete = constants.%GenericCallF]
  1351. // CHECK:STDOUT: %e.ref: %E = name_ref e, %e
  1352. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [concrete = constants.%int_2.ecc]
  1353. // CHECK:STDOUT: %J.facet.loc29_27.1: %J.type = facet_value constants.%E, (constants.%impl_witness.71e) [concrete = constants.%J.facet.ccb]
  1354. // CHECK:STDOUT: %.loc29_27.1: %J.type = converted constants.%E, %J.facet.loc29_27.1 [concrete = constants.%J.facet.ccb]
  1355. // CHECK:STDOUT: %J.facet.loc29_27.2: %J.type = facet_value constants.%E, (constants.%impl_witness.71e) [concrete = constants.%J.facet.ccb]
  1356. // CHECK:STDOUT: %.loc29_27.2: %J.type = converted constants.%E, %J.facet.loc29_27.2 [concrete = constants.%J.facet.ccb]
  1357. // CHECK:STDOUT: %GenericCallF.specific_fn: <specific function> = specific_function %GenericCallF.ref, @GenericCallF(constants.%J.facet.ccb) [concrete = constants.%GenericCallF.specific_fn]
  1358. // CHECK:STDOUT: %impl.elem0: %.be7 = impl_witness_access constants.%impl_witness.d39, element0 [concrete = constants.%Convert.956]
  1359. // CHECK:STDOUT: %bound_method.loc29_26.1: <bound method> = bound_method %int_2, %impl.elem0 [concrete = constants.%Convert.bound.ef9]
  1360. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %impl.elem0, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  1361. // CHECK:STDOUT: %bound_method.loc29_26.2: <bound method> = bound_method %int_2, %specific_fn [concrete = constants.%bound_method.b92]
  1362. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %bound_method.loc29_26.2(%int_2) [concrete = constants.%int_2.ef8]
  1363. // CHECK:STDOUT: %.loc29_26.1: %i32 = value_of_initializer %int.convert_checked [concrete = constants.%int_2.ef8]
  1364. // CHECK:STDOUT: %.loc29_26.2: %i32 = converted %int_2, %.loc29_26.1 [concrete = constants.%int_2.ef8]
  1365. // CHECK:STDOUT: %GenericCallF.call: init %i32 = call %GenericCallF.specific_fn(%e.ref, %.loc29_26.2)
  1366. // CHECK:STDOUT: %.loc29_28.1: %i32 = value_of_initializer %GenericCallF.call
  1367. // CHECK:STDOUT: %.loc29_28.2: %i32 = converted %GenericCallF.call, %.loc29_28.1
  1368. // CHECK:STDOUT: return %.loc29_28.2
  1369. // CHECK:STDOUT: }
  1370. // CHECK:STDOUT:
  1371. // CHECK:STDOUT: specific @U(constants.%Self.ccd) {}
  1372. // CHECK:STDOUT:
  1373. // CHECK:STDOUT: specific @U(constants.%J.facet.085e97.1) {}
  1374. // CHECK:STDOUT:
  1375. // CHECK:STDOUT: specific @F.1(constants.%Self.ccd) {
  1376. // CHECK:STDOUT: %Self => constants.%Self.ccd
  1377. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1 => constants.%Self.as_wit.iface0
  1378. // CHECK:STDOUT: %impl.elem0.loc5_11.1 => constants.%impl.elem0.d9c3a6.1
  1379. // CHECK:STDOUT: }
  1380. // CHECK:STDOUT:
  1381. // CHECK:STDOUT: specific @G.1(constants.%Self.ccd) {
  1382. // CHECK:STDOUT: %Self => constants.%Self.ccd
  1383. // CHECK:STDOUT: %Self.as_type.loc6_14.1 => constants.%Self.as_type.3df
  1384. // CHECK:STDOUT: %Self.as_wit.iface0.loc6_23.1 => constants.%Self.as_wit.iface0
  1385. // CHECK:STDOUT: %impl.elem0.loc6_23.1 => constants.%impl.elem0.d9c3a6.1
  1386. // CHECK:STDOUT: }
  1387. // CHECK:STDOUT:
  1388. // CHECK:STDOUT: specific @U(constants.%J.facet.28c) {}
  1389. // CHECK:STDOUT:
  1390. // CHECK:STDOUT: specific @F.1(constants.%J.facet.ccb) {
  1391. // CHECK:STDOUT: %Self => constants.%J.facet.ccb
  1392. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1 => constants.%impl_witness.71e
  1393. // CHECK:STDOUT: %impl.elem0.loc5_11.1 => constants.%i32
  1394. // CHECK:STDOUT: }
  1395. // CHECK:STDOUT:
  1396. // CHECK:STDOUT: specific @G.1(constants.%J.facet.ccb) {
  1397. // CHECK:STDOUT: %Self => constants.%J.facet.ccb
  1398. // CHECK:STDOUT: %Self.as_type.loc6_14.1 => constants.%E
  1399. // CHECK:STDOUT: %Self.as_wit.iface0.loc6_23.1 => constants.%impl_witness.71e
  1400. // CHECK:STDOUT: %impl.elem0.loc6_23.1 => constants.%i32
  1401. // CHECK:STDOUT: }
  1402. // CHECK:STDOUT:
  1403. // CHECK:STDOUT: specific @U(constants.%J.facet.085e97.2) {}
  1404. // CHECK:STDOUT:
  1405. // CHECK:STDOUT: specific @GenericCallF(constants.%T) {
  1406. // CHECK:STDOUT: %T.loc24_17.2 => constants.%T
  1407. // CHECK:STDOUT: %T.patt.loc24_17.2 => constants.%T.patt
  1408. // CHECK:STDOUT: %T.as_type.loc24_27.2 => constants.%T.as_type
  1409. // CHECK:STDOUT: %T.as_wit.iface0.loc24_34.2 => constants.%T.as_wit.iface0
  1410. // CHECK:STDOUT: %impl.elem0.loc24_34.2 => constants.%impl.elem0.d9c3a6.2
  1411. // CHECK:STDOUT: }
  1412. // CHECK:STDOUT:
  1413. // CHECK:STDOUT: specific @F.1(constants.%J.facet.085e97.2) {
  1414. // CHECK:STDOUT: %Self => constants.%J.facet.085e97.2
  1415. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1 => constants.%T.as_wit.iface0
  1416. // CHECK:STDOUT: %impl.elem0.loc5_11.1 => constants.%impl.elem0.d9c3a6.2
  1417. // CHECK:STDOUT: }
  1418. // CHECK:STDOUT:
  1419. // CHECK:STDOUT: specific @F.1(@GenericCallF.%J.facet) {}
  1420. // CHECK:STDOUT:
  1421. // CHECK:STDOUT: specific @GenericCallF(constants.%J.facet.ccb) {
  1422. // CHECK:STDOUT: %T.loc24_17.2 => constants.%J.facet.ccb
  1423. // CHECK:STDOUT: %T.patt.loc24_17.2 => constants.%T.patt
  1424. // CHECK:STDOUT: %T.as_type.loc24_27.2 => constants.%E
  1425. // CHECK:STDOUT: %T.as_wit.iface0.loc24_34.2 => constants.%impl_witness.71e
  1426. // CHECK:STDOUT: %impl.elem0.loc24_34.2 => constants.%i32
  1427. // CHECK:STDOUT:
  1428. // CHECK:STDOUT: !definition:
  1429. // CHECK:STDOUT: %require_complete.loc24_38 => constants.%complete_type.f8a
  1430. // CHECK:STDOUT: %require_complete.loc24_25 => constants.%complete_type.357
  1431. // CHECK:STDOUT: %J.facet => constants.%J.facet.ccb
  1432. // CHECK:STDOUT: %.loc25_11.2 => constants.%.dea
  1433. // CHECK:STDOUT: %impl.elem1.loc25_11.2 => constants.%F.c81
  1434. // CHECK:STDOUT: %specific_impl_fn.loc25_11.2 => constants.%F.c81
  1435. // CHECK:STDOUT: }
  1436. // CHECK:STDOUT:
  1437. // CHECK:STDOUT: --- use_constraint_on_associated_type.carbon
  1438. // CHECK:STDOUT:
  1439. // CHECK:STDOUT: constants {
  1440. // CHECK:STDOUT: %J.type: type = facet_type <@J> [concrete]
  1441. // CHECK:STDOUT: %Self.ccd: %J.type = bind_symbolic_name Self, 0 [symbolic]
  1442. // CHECK:STDOUT: %Add.type: type = facet_type <@Add> [concrete]
  1443. // CHECK:STDOUT: %J.assoc_type: type = assoc_entity_type @J [concrete]
  1444. // CHECK:STDOUT: %assoc0.304: %J.assoc_type = assoc_entity element0, @J.%U [concrete]
  1445. // CHECK:STDOUT: %Self.as_type.3df: type = facet_access_type %Self.ccd [symbolic]
  1446. // CHECK:STDOUT: %Self.as_wit.iface0: <witness> = facet_access_witness %Self.ccd, element0 [symbolic]
  1447. // CHECK:STDOUT: %J.facet.085e97.1: %J.type = facet_value %Self.as_type.3df, (%Self.as_wit.iface0) [symbolic]
  1448. // CHECK:STDOUT: %impl.elem0.c57618.1: %Add.type = impl_witness_access %Self.as_wit.iface0, element0 [symbolic]
  1449. // CHECK:STDOUT: %as_type.6b96b1.1: type = facet_access_type %impl.elem0.c57618.1 [symbolic]
  1450. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  1451. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  1452. // CHECK:STDOUT: %assoc1: %J.assoc_type = assoc_entity element1, @J.%F.decl [concrete]
  1453. // CHECK:STDOUT: %T: %J.type = bind_symbolic_name T, 0 [symbolic]
  1454. // CHECK:STDOUT: %T.patt: %J.type = symbolic_binding_pattern T, 0 [symbolic]
  1455. // CHECK:STDOUT: %T.as_type: type = facet_access_type %T [symbolic]
  1456. // CHECK:STDOUT: %T.as_wit.iface0: <witness> = facet_access_witness %T, element0 [symbolic]
  1457. // CHECK:STDOUT: %J.facet.085e97.2: %J.type = facet_value %T.as_type, (%T.as_wit.iface0) [symbolic]
  1458. // CHECK:STDOUT: %impl.elem0.c57618.2: %Add.type = impl_witness_access %T.as_wit.iface0, element0 [symbolic]
  1459. // CHECK:STDOUT: %as_type.6b96b1.2: type = facet_access_type %impl.elem0.c57618.2 [symbolic]
  1460. // CHECK:STDOUT: %GenericAddResult.type: type = fn_type @GenericAddResult [concrete]
  1461. // CHECK:STDOUT: %GenericAddResult: %GenericAddResult.type = struct_value () [concrete]
  1462. // CHECK:STDOUT: %require_complete.ec7: <witness> = require_complete_type %as_type.6b96b1.2 [symbolic]
  1463. // CHECK:STDOUT: %require_complete.2a5: <witness> = require_complete_type %T.as_type [symbolic]
  1464. // CHECK:STDOUT: %.4d2: type = fn_type_with_self_type %F.type, %J.facet.085e97.2 [symbolic]
  1465. // CHECK:STDOUT: %impl.elem1: %.4d2 = impl_witness_access %T.as_wit.iface0, element1 [symbolic]
  1466. // CHECK:STDOUT: %specific_impl_fn.5d8: <specific function> = specific_impl_function %impl.elem1, @F(%J.facet.085e97.2) [symbolic]
  1467. // CHECK:STDOUT: %Op.type: type = fn_type @Op [concrete]
  1468. // CHECK:STDOUT: %as_wit.iface0: <witness> = facet_access_witness %impl.elem0.c57618.2, element0 [symbolic]
  1469. // CHECK:STDOUT: %Add.facet: %Add.type = facet_value %as_type.6b96b1.2, (%as_wit.iface0) [symbolic]
  1470. // CHECK:STDOUT: %.5a3: type = fn_type_with_self_type %Op.type, %Add.facet [symbolic]
  1471. // CHECK:STDOUT: %impl.elem0.ab3: %.5a3 = impl_witness_access %as_wit.iface0, element0 [symbolic]
  1472. // CHECK:STDOUT: %specific_impl_fn.e8e: <specific function> = specific_impl_function %impl.elem0.ab3, @Op(%Add.facet) [symbolic]
  1473. // CHECK:STDOUT: }
  1474. // CHECK:STDOUT:
  1475. // CHECK:STDOUT: imports {
  1476. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  1477. // CHECK:STDOUT: .Add = %Core.Add
  1478. // CHECK:STDOUT: import Core//prelude
  1479. // CHECK:STDOUT: import Core//prelude/...
  1480. // CHECK:STDOUT: }
  1481. // CHECK:STDOUT: }
  1482. // CHECK:STDOUT:
  1483. // CHECK:STDOUT: file {
  1484. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  1485. // CHECK:STDOUT: .Core = imports.%Core
  1486. // CHECK:STDOUT: .J = %J.decl
  1487. // CHECK:STDOUT: .GenericAddResult = %GenericAddResult.decl
  1488. // CHECK:STDOUT: }
  1489. // CHECK:STDOUT: %Core.import = import Core
  1490. // CHECK:STDOUT: %J.decl: type = interface_decl @J [concrete = constants.%J.type] {} {}
  1491. // CHECK:STDOUT: %GenericAddResult.decl: %GenericAddResult.type = fn_decl @GenericAddResult [concrete = constants.%GenericAddResult] {
  1492. // CHECK:STDOUT: %T.patt.loc8_21.1: %J.type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc8_21.2 (constants.%T.patt)]
  1493. // CHECK:STDOUT: %t.patt: @GenericAddResult.%T.as_type.loc8_31.2 (%T.as_type) = binding_pattern t
  1494. // CHECK:STDOUT: %t.param_patt: @GenericAddResult.%T.as_type.loc8_31.2 (%T.as_type) = value_param_pattern %t.patt, call_param0
  1495. // CHECK:STDOUT: %u.patt: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = binding_pattern u
  1496. // CHECK:STDOUT: %u.param_patt: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = value_param_pattern %u.patt, call_param1
  1497. // CHECK:STDOUT: %return.patt: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = return_slot_pattern
  1498. // CHECK:STDOUT: %return.param_patt: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = out_param_pattern %return.patt, call_param2
  1499. // CHECK:STDOUT: } {
  1500. // CHECK:STDOUT: %T.ref.loc8_45: %J.type = name_ref T, %T.loc8_21.1 [symbolic = %T.loc8_21.2 (constants.%T)]
  1501. // CHECK:STDOUT: %U.ref.loc8_46: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0.304]
  1502. // CHECK:STDOUT: %T.as_type.loc8_46: type = facet_access_type %T.ref.loc8_45 [symbolic = %T.as_type.loc8_31.2 (constants.%T.as_type)]
  1503. // CHECK:STDOUT: %.loc8_46.1: type = converted %T.ref.loc8_45, %T.as_type.loc8_46 [symbolic = %T.as_type.loc8_31.2 (constants.%T.as_type)]
  1504. // CHECK:STDOUT: %T.as_wit.iface0.loc8_46: <witness> = facet_access_witness %T.ref.loc8_45, element0 [symbolic = %T.as_wit.iface0.loc8_38.2 (constants.%T.as_wit.iface0)]
  1505. // CHECK:STDOUT: %impl.elem0.loc8_46: %Add.type = impl_witness_access %T.as_wit.iface0.loc8_46, element0 [symbolic = %impl.elem0.loc8_38.2 (constants.%impl.elem0.c57618.2)]
  1506. // CHECK:STDOUT: %as_type.loc8_46: type = facet_access_type %impl.elem0.loc8_46 [symbolic = %as_type.loc8_38.2 (constants.%as_type.6b96b1.2)]
  1507. // CHECK:STDOUT: %.loc8_46.2: type = converted %impl.elem0.loc8_46, %as_type.loc8_46 [symbolic = %as_type.loc8_38.2 (constants.%as_type.6b96b1.2)]
  1508. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  1509. // CHECK:STDOUT: %T.loc8_21.1: %J.type = bind_symbolic_name T, 0 [symbolic = %T.loc8_21.2 (constants.%T)]
  1510. // CHECK:STDOUT: %t.param: @GenericAddResult.%T.as_type.loc8_31.2 (%T.as_type) = value_param call_param0
  1511. // CHECK:STDOUT: %.loc8_31.1: type = splice_block %.loc8_31.2 [symbolic = %T.as_type.loc8_31.2 (constants.%T.as_type)] {
  1512. // CHECK:STDOUT: %T.ref.loc8_31: %J.type = name_ref T, %T.loc8_21.1 [symbolic = %T.loc8_21.2 (constants.%T)]
  1513. // CHECK:STDOUT: %T.as_type.loc8_31.1: type = facet_access_type %T.ref.loc8_31 [symbolic = %T.as_type.loc8_31.2 (constants.%T.as_type)]
  1514. // CHECK:STDOUT: %.loc8_31.2: type = converted %T.ref.loc8_31, %T.as_type.loc8_31.1 [symbolic = %T.as_type.loc8_31.2 (constants.%T.as_type)]
  1515. // CHECK:STDOUT: }
  1516. // CHECK:STDOUT: %t: @GenericAddResult.%T.as_type.loc8_31.2 (%T.as_type) = bind_name t, %t.param
  1517. // CHECK:STDOUT: %u.param: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = value_param call_param1
  1518. // CHECK:STDOUT: %.loc8_38.1: type = splice_block %.loc8_38.3 [symbolic = %as_type.loc8_38.2 (constants.%as_type.6b96b1.2)] {
  1519. // CHECK:STDOUT: %T.ref.loc8_37: %J.type = name_ref T, %T.loc8_21.1 [symbolic = %T.loc8_21.2 (constants.%T)]
  1520. // CHECK:STDOUT: %U.ref.loc8_38: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0.304]
  1521. // CHECK:STDOUT: %T.as_type.loc8_38: type = facet_access_type %T.ref.loc8_37 [symbolic = %T.as_type.loc8_31.2 (constants.%T.as_type)]
  1522. // CHECK:STDOUT: %.loc8_38.2: type = converted %T.ref.loc8_37, %T.as_type.loc8_38 [symbolic = %T.as_type.loc8_31.2 (constants.%T.as_type)]
  1523. // CHECK:STDOUT: %T.as_wit.iface0.loc8_38.1: <witness> = facet_access_witness %T.ref.loc8_37, element0 [symbolic = %T.as_wit.iface0.loc8_38.2 (constants.%T.as_wit.iface0)]
  1524. // CHECK:STDOUT: %impl.elem0.loc8_38.1: %Add.type = impl_witness_access %T.as_wit.iface0.loc8_38.1, element0 [symbolic = %impl.elem0.loc8_38.2 (constants.%impl.elem0.c57618.2)]
  1525. // CHECK:STDOUT: %as_type.loc8_38.1: type = facet_access_type %impl.elem0.loc8_38.1 [symbolic = %as_type.loc8_38.2 (constants.%as_type.6b96b1.2)]
  1526. // CHECK:STDOUT: %.loc8_38.3: type = converted %impl.elem0.loc8_38.1, %as_type.loc8_38.1 [symbolic = %as_type.loc8_38.2 (constants.%as_type.6b96b1.2)]
  1527. // CHECK:STDOUT: }
  1528. // CHECK:STDOUT: %u: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = bind_name u, %u.param
  1529. // CHECK:STDOUT: %return.param: ref @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = out_param call_param2
  1530. // CHECK:STDOUT: %return: ref @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = return_slot %return.param
  1531. // CHECK:STDOUT: }
  1532. // CHECK:STDOUT: }
  1533. // CHECK:STDOUT:
  1534. // CHECK:STDOUT: interface @J {
  1535. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.ccd]
  1536. // CHECK:STDOUT: %U: %Add.type = assoc_const_decl @U [concrete] {
  1537. // CHECK:STDOUT: %assoc0: %J.assoc_type = assoc_entity element0, @J.%U [concrete = constants.%assoc0.304]
  1538. // CHECK:STDOUT: }
  1539. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {
  1540. // CHECK:STDOUT: %u.patt: @F.%as_type (%as_type.6b96b1.1) = binding_pattern u
  1541. // CHECK:STDOUT: %u.param_patt: @F.%as_type (%as_type.6b96b1.1) = value_param_pattern %u.patt, call_param0
  1542. // CHECK:STDOUT: %return.patt: @F.%as_type (%as_type.6b96b1.1) = return_slot_pattern
  1543. // CHECK:STDOUT: %return.param_patt: @F.%as_type (%as_type.6b96b1.1) = out_param_pattern %return.patt, call_param1
  1544. // CHECK:STDOUT: } {
  1545. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_17: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  1546. // CHECK:STDOUT: %impl.elem0.loc5_17: %Add.type = impl_witness_access %Self.as_wit.iface0.loc5_17, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.c57618.1)]
  1547. // CHECK:STDOUT: %U.ref.loc5_17: %Add.type = name_ref U, %impl.elem0.loc5_17 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.c57618.1)]
  1548. // CHECK:STDOUT: %U.as_type.loc5_17: type = facet_access_type %U.ref.loc5_17 [symbolic = %as_type (constants.%as_type.6b96b1.1)]
  1549. // CHECK:STDOUT: %.loc5_17: type = converted %U.ref.loc5_17, %U.as_type.loc5_17 [symbolic = %as_type (constants.%as_type.6b96b1.1)]
  1550. // CHECK:STDOUT: %u.param: @F.%as_type (%as_type.6b96b1.1) = value_param call_param0
  1551. // CHECK:STDOUT: %.loc5_11.1: type = splice_block %.loc5_11.2 [symbolic = %as_type (constants.%as_type.6b96b1.1)] {
  1552. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.2: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  1553. // CHECK:STDOUT: %impl.elem0.loc5_11.2: %Add.type = impl_witness_access %Self.as_wit.iface0.loc5_11.2, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.c57618.1)]
  1554. // CHECK:STDOUT: %U.ref.loc5_11: %Add.type = name_ref U, %impl.elem0.loc5_11.2 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.c57618.1)]
  1555. // CHECK:STDOUT: %U.as_type.loc5_11: type = facet_access_type %U.ref.loc5_11 [symbolic = %as_type (constants.%as_type.6b96b1.1)]
  1556. // CHECK:STDOUT: %.loc5_11.2: type = converted %U.ref.loc5_11, %U.as_type.loc5_11 [symbolic = %as_type (constants.%as_type.6b96b1.1)]
  1557. // CHECK:STDOUT: }
  1558. // CHECK:STDOUT: %u: @F.%as_type (%as_type.6b96b1.1) = bind_name u, %u.param
  1559. // CHECK:STDOUT: %return.param: ref @F.%as_type (%as_type.6b96b1.1) = out_param call_param1
  1560. // CHECK:STDOUT: %return: ref @F.%as_type (%as_type.6b96b1.1) = return_slot %return.param
  1561. // CHECK:STDOUT: }
  1562. // CHECK:STDOUT: %assoc1: %J.assoc_type = assoc_entity element1, %F.decl [concrete = constants.%assoc1]
  1563. // CHECK:STDOUT:
  1564. // CHECK:STDOUT: !members:
  1565. // CHECK:STDOUT: .Self = %Self
  1566. // CHECK:STDOUT: .U = @U.%assoc0
  1567. // CHECK:STDOUT: .F = %assoc1
  1568. // CHECK:STDOUT: witness = (%U, %F.decl)
  1569. // CHECK:STDOUT: }
  1570. // CHECK:STDOUT:
  1571. // CHECK:STDOUT: generic assoc_const @U(@J.%Self: %J.type) {
  1572. // CHECK:STDOUT: assoc_const U:! %Add.type;
  1573. // CHECK:STDOUT: }
  1574. // CHECK:STDOUT:
  1575. // CHECK:STDOUT: generic fn @F(@J.%Self: %J.type) {
  1576. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self.ccd)]
  1577. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1: <witness> = facet_access_witness %Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  1578. // CHECK:STDOUT: %impl.elem0.loc5_11.1: %Add.type = impl_witness_access %Self.as_wit.iface0.loc5_11.1, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.c57618.1)]
  1579. // CHECK:STDOUT: %as_type: type = facet_access_type %impl.elem0.loc5_11.1 [symbolic = %as_type (constants.%as_type.6b96b1.1)]
  1580. // CHECK:STDOUT:
  1581. // CHECK:STDOUT: fn(%u.param_patt: @F.%as_type (%as_type.6b96b1.1)) -> @F.%as_type (%as_type.6b96b1.1);
  1582. // CHECK:STDOUT: }
  1583. // CHECK:STDOUT:
  1584. // CHECK:STDOUT: generic fn @GenericAddResult(%T.loc8_21.1: %J.type) {
  1585. // CHECK:STDOUT: %T.loc8_21.2: %J.type = bind_symbolic_name T, 0 [symbolic = %T.loc8_21.2 (constants.%T)]
  1586. // CHECK:STDOUT: %T.patt.loc8_21.2: %J.type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc8_21.2 (constants.%T.patt)]
  1587. // CHECK:STDOUT: %T.as_type.loc8_31.2: type = facet_access_type %T.loc8_21.2 [symbolic = %T.as_type.loc8_31.2 (constants.%T.as_type)]
  1588. // CHECK:STDOUT: %T.as_wit.iface0.loc8_38.2: <witness> = facet_access_witness %T.loc8_21.2, element0 [symbolic = %T.as_wit.iface0.loc8_38.2 (constants.%T.as_wit.iface0)]
  1589. // CHECK:STDOUT: %impl.elem0.loc8_38.2: %Add.type = impl_witness_access %T.as_wit.iface0.loc8_38.2, element0 [symbolic = %impl.elem0.loc8_38.2 (constants.%impl.elem0.c57618.2)]
  1590. // CHECK:STDOUT: %as_type.loc8_38.2: type = facet_access_type %impl.elem0.loc8_38.2 [symbolic = %as_type.loc8_38.2 (constants.%as_type.6b96b1.2)]
  1591. // CHECK:STDOUT:
  1592. // CHECK:STDOUT: !definition:
  1593. // CHECK:STDOUT: %require_complete.loc8_42: <witness> = require_complete_type @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) [symbolic = %require_complete.loc8_42 (constants.%require_complete.ec7)]
  1594. // CHECK:STDOUT: %require_complete.loc8_29: <witness> = require_complete_type @GenericAddResult.%T.as_type.loc8_31.2 (%T.as_type) [symbolic = %require_complete.loc8_29 (constants.%require_complete.2a5)]
  1595. // CHECK:STDOUT: %J.facet: %J.type = facet_value %T.as_type.loc8_31.2, (%T.as_wit.iface0.loc8_38.2) [symbolic = %J.facet (constants.%J.facet.085e97.2)]
  1596. // CHECK:STDOUT: %.loc9_11.2: type = fn_type_with_self_type constants.%F.type, %J.facet [symbolic = %.loc9_11.2 (constants.%.4d2)]
  1597. // CHECK:STDOUT: %impl.elem1.loc9_11.2: @GenericAddResult.%.loc9_11.2 (%.4d2) = impl_witness_access %T.as_wit.iface0.loc8_38.2, element1 [symbolic = %impl.elem1.loc9_11.2 (constants.%impl.elem1)]
  1598. // CHECK:STDOUT: %specific_impl_fn.loc9_11.2: <specific function> = specific_impl_function %impl.elem1.loc9_11.2, @F(%J.facet) [symbolic = %specific_impl_fn.loc9_11.2 (constants.%specific_impl_fn.5d8)]
  1599. // CHECK:STDOUT: %as_wit.iface0.loc9_17.2: <witness> = facet_access_witness %impl.elem0.loc8_38.2, element0 [symbolic = %as_wit.iface0.loc9_17.2 (constants.%as_wit.iface0)]
  1600. // CHECK:STDOUT: %Add.facet: %Add.type = facet_value %as_type.loc8_38.2, (%as_wit.iface0.loc9_17.2) [symbolic = %Add.facet (constants.%Add.facet)]
  1601. // CHECK:STDOUT: %.loc9_17.4: type = fn_type_with_self_type constants.%Op.type, %Add.facet [symbolic = %.loc9_17.4 (constants.%.5a3)]
  1602. // CHECK:STDOUT: %impl.elem0.loc9_17.2: @GenericAddResult.%.loc9_17.4 (%.5a3) = impl_witness_access %as_wit.iface0.loc9_17.2, element0 [symbolic = %impl.elem0.loc9_17.2 (constants.%impl.elem0.ab3)]
  1603. // CHECK:STDOUT: %specific_impl_fn.loc9_17.2: <specific function> = specific_impl_function %impl.elem0.loc9_17.2, @Op(%Add.facet) [symbolic = %specific_impl_fn.loc9_17.2 (constants.%specific_impl_fn.e8e)]
  1604. // CHECK:STDOUT:
  1605. // CHECK:STDOUT: fn[%T.patt.loc8_21.1: %J.type](%t.param_patt: @GenericAddResult.%T.as_type.loc8_31.2 (%T.as_type), %u.param_patt: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2)) -> @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) {
  1606. // CHECK:STDOUT: !entry:
  1607. // CHECK:STDOUT: %t.ref: @GenericAddResult.%T.as_type.loc8_31.2 (%T.as_type) = name_ref t, %t
  1608. // CHECK:STDOUT: %F.ref.loc9_11: %J.assoc_type = name_ref F, @J.%assoc1 [concrete = constants.%assoc1]
  1609. // CHECK:STDOUT: %T.as_type.loc9_11: type = facet_access_type constants.%T [symbolic = %T.as_type.loc8_31.2 (constants.%T.as_type)]
  1610. // CHECK:STDOUT: %.loc9_11.1: type = converted constants.%T, %T.as_type.loc9_11 [symbolic = %T.as_type.loc8_31.2 (constants.%T.as_type)]
  1611. // CHECK:STDOUT: %T.as_wit.iface0.loc9_11: <witness> = facet_access_witness constants.%T, element0 [symbolic = %T.as_wit.iface0.loc8_38.2 (constants.%T.as_wit.iface0)]
  1612. // CHECK:STDOUT: %impl.elem1.loc9_11.1: @GenericAddResult.%.loc9_11.2 (%.4d2) = impl_witness_access %T.as_wit.iface0.loc9_11, element1 [symbolic = %impl.elem1.loc9_11.2 (constants.%impl.elem1)]
  1613. // CHECK:STDOUT: %u.ref.loc9_14: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = name_ref u, %u
  1614. // CHECK:STDOUT: %.loc9_15.1: %Add.type = converted constants.%as_type.6b96b1.2, constants.%impl.elem0.c57618.2 [symbolic = %impl.elem0.loc8_38.2 (constants.%impl.elem0.c57618.2)]
  1615. // CHECK:STDOUT: %.loc9_15.2: %Add.type = converted constants.%as_type.6b96b1.2, constants.%impl.elem0.c57618.2 [symbolic = %impl.elem0.loc8_38.2 (constants.%impl.elem0.c57618.2)]
  1616. // CHECK:STDOUT: %specific_impl_fn.loc9_11.1: <specific function> = specific_impl_function %impl.elem1.loc9_11.1, @F(constants.%J.facet.085e97.2) [symbolic = %specific_impl_fn.loc9_11.2 (constants.%specific_impl_fn.5d8)]
  1617. // CHECK:STDOUT: %.loc9_15.3: init @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = call %specific_impl_fn.loc9_11.1(%u.ref.loc9_14)
  1618. // CHECK:STDOUT: %T.ref.loc9: %J.type = name_ref T, %T.loc8_21.1 [symbolic = %T.loc8_21.2 (constants.%T)]
  1619. // CHECK:STDOUT: %F.ref.loc9_20: %J.assoc_type = name_ref F, @J.%assoc1 [concrete = constants.%assoc1]
  1620. // CHECK:STDOUT: %T.as_type.loc9_20: type = facet_access_type %T.ref.loc9 [symbolic = %T.as_type.loc8_31.2 (constants.%T.as_type)]
  1621. // CHECK:STDOUT: %.loc9_20: type = converted %T.ref.loc9, %T.as_type.loc9_20 [symbolic = %T.as_type.loc8_31.2 (constants.%T.as_type)]
  1622. // CHECK:STDOUT: %T.as_wit.iface0.loc9_20: <witness> = facet_access_witness %T.ref.loc9, element0 [symbolic = %T.as_wit.iface0.loc8_38.2 (constants.%T.as_wit.iface0)]
  1623. // CHECK:STDOUT: %impl.elem1.loc9_20: @GenericAddResult.%.loc9_11.2 (%.4d2) = impl_witness_access %T.as_wit.iface0.loc9_20, element1 [symbolic = %impl.elem1.loc9_11.2 (constants.%impl.elem1)]
  1624. // CHECK:STDOUT: %u.ref.loc9_23: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = name_ref u, %u
  1625. // CHECK:STDOUT: %.loc9_24.1: %Add.type = converted constants.%as_type.6b96b1.2, constants.%impl.elem0.c57618.2 [symbolic = %impl.elem0.loc8_38.2 (constants.%impl.elem0.c57618.2)]
  1626. // CHECK:STDOUT: %.loc9_24.2: %Add.type = converted constants.%as_type.6b96b1.2, constants.%impl.elem0.c57618.2 [symbolic = %impl.elem0.loc8_38.2 (constants.%impl.elem0.c57618.2)]
  1627. // CHECK:STDOUT: %specific_impl_fn.loc9_20: <specific function> = specific_impl_function %impl.elem1.loc9_20, @F(constants.%J.facet.085e97.2) [symbolic = %specific_impl_fn.loc9_11.2 (constants.%specific_impl_fn.5d8)]
  1628. // CHECK:STDOUT: %.loc9_24.3: init @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = call %specific_impl_fn.loc9_20(%u.ref.loc9_23)
  1629. // CHECK:STDOUT: %as_wit.iface0.loc9_17.1: <witness> = facet_access_witness constants.%impl.elem0.c57618.2, element0 [symbolic = %as_wit.iface0.loc9_17.2 (constants.%as_wit.iface0)]
  1630. // CHECK:STDOUT: %impl.elem0.loc9_17.1: @GenericAddResult.%.loc9_17.4 (%.5a3) = impl_witness_access %as_wit.iface0.loc9_17.1, element0 [symbolic = %impl.elem0.loc9_17.2 (constants.%impl.elem0.ab3)]
  1631. // CHECK:STDOUT: %bound_method.loc9_17.1: <bound method> = bound_method %.loc9_15.3, %impl.elem0.loc9_17.1
  1632. // CHECK:STDOUT: %.loc9_17.1: %Add.type = converted constants.%as_type.6b96b1.2, constants.%impl.elem0.c57618.2 [symbolic = %impl.elem0.loc8_38.2 (constants.%impl.elem0.c57618.2)]
  1633. // CHECK:STDOUT: %.loc9_17.2: %Add.type = converted constants.%as_type.6b96b1.2, constants.%impl.elem0.c57618.2 [symbolic = %impl.elem0.loc8_38.2 (constants.%impl.elem0.c57618.2)]
  1634. // CHECK:STDOUT: %specific_impl_fn.loc9_17.1: <specific function> = specific_impl_function %impl.elem0.loc9_17.1, @Op(constants.%Add.facet) [symbolic = %specific_impl_fn.loc9_17.2 (constants.%specific_impl_fn.e8e)]
  1635. // CHECK:STDOUT: %bound_method.loc9_17.2: <bound method> = bound_method %.loc9_15.3, %specific_impl_fn.loc9_17.1
  1636. // CHECK:STDOUT: %.loc9_15.4: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = value_of_initializer %.loc9_15.3
  1637. // CHECK:STDOUT: %.loc9_15.5: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = converted %.loc9_15.3, %.loc9_15.4
  1638. // CHECK:STDOUT: %.loc9_24.4: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = value_of_initializer %.loc9_24.3
  1639. // CHECK:STDOUT: %.loc9_24.5: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = converted %.loc9_24.3, %.loc9_24.4
  1640. // CHECK:STDOUT: %.loc9_17.3: init @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = call %bound_method.loc9_17.2(%.loc9_15.5, %.loc9_24.5)
  1641. // CHECK:STDOUT: %.loc9_25.1: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = value_of_initializer %.loc9_17.3
  1642. // CHECK:STDOUT: %.loc9_25.2: @GenericAddResult.%as_type.loc8_38.2 (%as_type.6b96b1.2) = converted %.loc9_17.3, %.loc9_25.1
  1643. // CHECK:STDOUT: return %.loc9_25.2
  1644. // CHECK:STDOUT: }
  1645. // CHECK:STDOUT: }
  1646. // CHECK:STDOUT:
  1647. // CHECK:STDOUT: specific @U(constants.%Self.ccd) {}
  1648. // CHECK:STDOUT:
  1649. // CHECK:STDOUT: specific @U(constants.%J.facet.085e97.1) {}
  1650. // CHECK:STDOUT:
  1651. // CHECK:STDOUT: specific @F(constants.%Self.ccd) {
  1652. // CHECK:STDOUT: %Self => constants.%Self.ccd
  1653. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1 => constants.%Self.as_wit.iface0
  1654. // CHECK:STDOUT: %impl.elem0.loc5_11.1 => constants.%impl.elem0.c57618.1
  1655. // CHECK:STDOUT: %as_type => constants.%as_type.6b96b1.1
  1656. // CHECK:STDOUT: }
  1657. // CHECK:STDOUT:
  1658. // CHECK:STDOUT: specific @U(constants.%J.facet.085e97.2) {}
  1659. // CHECK:STDOUT:
  1660. // CHECK:STDOUT: specific @GenericAddResult(constants.%T) {
  1661. // CHECK:STDOUT: %T.loc8_21.2 => constants.%T
  1662. // CHECK:STDOUT: %T.patt.loc8_21.2 => constants.%T.patt
  1663. // CHECK:STDOUT: %T.as_type.loc8_31.2 => constants.%T.as_type
  1664. // CHECK:STDOUT: %T.as_wit.iface0.loc8_38.2 => constants.%T.as_wit.iface0
  1665. // CHECK:STDOUT: %impl.elem0.loc8_38.2 => constants.%impl.elem0.c57618.2
  1666. // CHECK:STDOUT: %as_type.loc8_38.2 => constants.%as_type.6b96b1.2
  1667. // CHECK:STDOUT: }
  1668. // CHECK:STDOUT:
  1669. // CHECK:STDOUT: specific @F(constants.%J.facet.085e97.2) {
  1670. // CHECK:STDOUT: %Self => constants.%J.facet.085e97.2
  1671. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1 => constants.%T.as_wit.iface0
  1672. // CHECK:STDOUT: %impl.elem0.loc5_11.1 => constants.%impl.elem0.c57618.2
  1673. // CHECK:STDOUT: %as_type => constants.%as_type.6b96b1.2
  1674. // CHECK:STDOUT: }
  1675. // CHECK:STDOUT:
  1676. // CHECK:STDOUT: specific @F(@GenericAddResult.%J.facet) {}
  1677. // CHECK:STDOUT:
  1678. // CHECK:STDOUT: --- interface_qualified.carbon
  1679. // CHECK:STDOUT:
  1680. // CHECK:STDOUT: constants {
  1681. // CHECK:STDOUT: %J.type: type = facet_type <@J> [concrete]
  1682. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic]
  1683. // CHECK:STDOUT: %J.assoc_type: type = assoc_entity_type @J [concrete]
  1684. // CHECK:STDOUT: %assoc0: %J.assoc_type = assoc_entity element0, @J.%U [concrete]
  1685. // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self [symbolic]
  1686. // CHECK:STDOUT: %Self.as_wit.iface0: <witness> = facet_access_witness %Self, element0 [symbolic]
  1687. // CHECK:STDOUT: %J.facet.085e97.1: %J.type = facet_value %Self.as_type, (%Self.as_wit.iface0) [symbolic]
  1688. // CHECK:STDOUT: %impl.elem0.d9c3a6.1: type = impl_witness_access %Self.as_wit.iface0, element0 [symbolic]
  1689. // CHECK:STDOUT: %G.type: type = fn_type @G [concrete]
  1690. // CHECK:STDOUT: %G: %G.type = struct_value () [concrete]
  1691. // CHECK:STDOUT: %assoc1: %J.assoc_type = assoc_entity element1, @J.%G.decl [concrete]
  1692. // CHECK:STDOUT: %T: %J.type = bind_symbolic_name T, 0 [symbolic]
  1693. // CHECK:STDOUT: %T.patt: %J.type = symbolic_binding_pattern T, 0 [symbolic]
  1694. // CHECK:STDOUT: %T.as_type: type = facet_access_type %T [symbolic]
  1695. // CHECK:STDOUT: %T.as_wit.iface0: <witness> = facet_access_witness %T, element0 [symbolic]
  1696. // CHECK:STDOUT: %J.facet.085e97.2: %J.type = facet_value %T.as_type, (%T.as_wit.iface0) [symbolic]
  1697. // CHECK:STDOUT: %impl.elem0.d9c3a6.2: type = impl_witness_access %T.as_wit.iface0, element0 [symbolic]
  1698. // CHECK:STDOUT: %GenericCallInterfaceQualified.type: type = fn_type @GenericCallInterfaceQualified [concrete]
  1699. // CHECK:STDOUT: %GenericCallInterfaceQualified: %GenericCallInterfaceQualified.type = struct_value () [concrete]
  1700. // CHECK:STDOUT: %require_complete.d9a: <witness> = require_complete_type %impl.elem0.d9c3a6.2 [symbolic]
  1701. // CHECK:STDOUT: %require_complete.2a5: <witness> = require_complete_type %T.as_type [symbolic]
  1702. // CHECK:STDOUT: %.9ac: type = fn_type_with_self_type %G.type, %J.facet.085e97.2 [symbolic]
  1703. // CHECK:STDOUT: %impl.elem1: %.9ac = impl_witness_access %T.as_wit.iface0, element1 [symbolic]
  1704. // CHECK:STDOUT: %specific_impl_fn: <specific function> = specific_impl_function %impl.elem1, @G(%J.facet.085e97.2) [symbolic]
  1705. // CHECK:STDOUT: }
  1706. // CHECK:STDOUT:
  1707. // CHECK:STDOUT: imports {
  1708. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  1709. // CHECK:STDOUT: import Core//prelude
  1710. // CHECK:STDOUT: import Core//prelude/...
  1711. // CHECK:STDOUT: }
  1712. // CHECK:STDOUT: }
  1713. // CHECK:STDOUT:
  1714. // CHECK:STDOUT: file {
  1715. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  1716. // CHECK:STDOUT: .Core = imports.%Core
  1717. // CHECK:STDOUT: .J = %J.decl
  1718. // CHECK:STDOUT: .GenericCallInterfaceQualified = %GenericCallInterfaceQualified.decl
  1719. // CHECK:STDOUT: }
  1720. // CHECK:STDOUT: %Core.import = import Core
  1721. // CHECK:STDOUT: %J.decl: type = interface_decl @J [concrete = constants.%J.type] {} {}
  1722. // CHECK:STDOUT: %GenericCallInterfaceQualified.decl: %GenericCallInterfaceQualified.type = fn_decl @GenericCallInterfaceQualified [concrete = constants.%GenericCallInterfaceQualified] {
  1723. // CHECK:STDOUT: %T.patt.loc8_34.1: %J.type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc8_34.2 (constants.%T.patt)]
  1724. // CHECK:STDOUT: %t.patt: @GenericCallInterfaceQualified.%T.as_type.loc8_44.2 (%T.as_type) = binding_pattern t
  1725. // CHECK:STDOUT: %t.param_patt: @GenericCallInterfaceQualified.%T.as_type.loc8_44.2 (%T.as_type) = value_param_pattern %t.patt, call_param0
  1726. // CHECK:STDOUT: %u.patt: @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2) = binding_pattern u
  1727. // CHECK:STDOUT: %u.param_patt: @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2) = value_param_pattern %u.patt, call_param1
  1728. // CHECK:STDOUT: %return.patt: @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2) = return_slot_pattern
  1729. // CHECK:STDOUT: %return.param_patt: @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2) = out_param_pattern %return.patt, call_param2
  1730. // CHECK:STDOUT: } {
  1731. // CHECK:STDOUT: %T.ref.loc8_58: %J.type = name_ref T, %T.loc8_34.1 [symbolic = %T.loc8_34.2 (constants.%T)]
  1732. // CHECK:STDOUT: %U.ref.loc8_59: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0]
  1733. // CHECK:STDOUT: %T.as_type.loc8_59: type = facet_access_type %T.ref.loc8_58 [symbolic = %T.as_type.loc8_44.2 (constants.%T.as_type)]
  1734. // CHECK:STDOUT: %.loc8_59: type = converted %T.ref.loc8_58, %T.as_type.loc8_59 [symbolic = %T.as_type.loc8_44.2 (constants.%T.as_type)]
  1735. // CHECK:STDOUT: %T.as_wit.iface0.loc8_59: <witness> = facet_access_witness %T.ref.loc8_58, element0 [symbolic = %T.as_wit.iface0.loc8_51.2 (constants.%T.as_wit.iface0)]
  1736. // CHECK:STDOUT: %impl.elem0.loc8_59: type = impl_witness_access %T.as_wit.iface0.loc8_59, element0 [symbolic = %impl.elem0.loc8_51.2 (constants.%impl.elem0.d9c3a6.2)]
  1737. // CHECK:STDOUT: %J.ref.loc8: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  1738. // CHECK:STDOUT: %T.loc8_34.1: %J.type = bind_symbolic_name T, 0 [symbolic = %T.loc8_34.2 (constants.%T)]
  1739. // CHECK:STDOUT: %t.param: @GenericCallInterfaceQualified.%T.as_type.loc8_44.2 (%T.as_type) = value_param call_param0
  1740. // CHECK:STDOUT: %.loc8_44.1: type = splice_block %.loc8_44.2 [symbolic = %T.as_type.loc8_44.2 (constants.%T.as_type)] {
  1741. // CHECK:STDOUT: %T.ref.loc8_44: %J.type = name_ref T, %T.loc8_34.1 [symbolic = %T.loc8_34.2 (constants.%T)]
  1742. // CHECK:STDOUT: %T.as_type.loc8_44.1: type = facet_access_type %T.ref.loc8_44 [symbolic = %T.as_type.loc8_44.2 (constants.%T.as_type)]
  1743. // CHECK:STDOUT: %.loc8_44.2: type = converted %T.ref.loc8_44, %T.as_type.loc8_44.1 [symbolic = %T.as_type.loc8_44.2 (constants.%T.as_type)]
  1744. // CHECK:STDOUT: }
  1745. // CHECK:STDOUT: %t: @GenericCallInterfaceQualified.%T.as_type.loc8_44.2 (%T.as_type) = bind_name t, %t.param
  1746. // CHECK:STDOUT: %u.param: @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2) = value_param call_param1
  1747. // CHECK:STDOUT: %.loc8_51.1: type = splice_block %impl.elem0.loc8_51.1 [symbolic = %impl.elem0.loc8_51.2 (constants.%impl.elem0.d9c3a6.2)] {
  1748. // CHECK:STDOUT: %T.ref.loc8_50: %J.type = name_ref T, %T.loc8_34.1 [symbolic = %T.loc8_34.2 (constants.%T)]
  1749. // CHECK:STDOUT: %U.ref.loc8_51: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0]
  1750. // CHECK:STDOUT: %T.as_type.loc8_51: type = facet_access_type %T.ref.loc8_50 [symbolic = %T.as_type.loc8_44.2 (constants.%T.as_type)]
  1751. // CHECK:STDOUT: %.loc8_51.2: type = converted %T.ref.loc8_50, %T.as_type.loc8_51 [symbolic = %T.as_type.loc8_44.2 (constants.%T.as_type)]
  1752. // CHECK:STDOUT: %T.as_wit.iface0.loc8_51.1: <witness> = facet_access_witness %T.ref.loc8_50, element0 [symbolic = %T.as_wit.iface0.loc8_51.2 (constants.%T.as_wit.iface0)]
  1753. // CHECK:STDOUT: %impl.elem0.loc8_51.1: type = impl_witness_access %T.as_wit.iface0.loc8_51.1, element0 [symbolic = %impl.elem0.loc8_51.2 (constants.%impl.elem0.d9c3a6.2)]
  1754. // CHECK:STDOUT: }
  1755. // CHECK:STDOUT: %u: @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2) = bind_name u, %u.param
  1756. // CHECK:STDOUT: %return.param: ref @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2) = out_param call_param2
  1757. // CHECK:STDOUT: %return: ref @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2) = return_slot %return.param
  1758. // CHECK:STDOUT: }
  1759. // CHECK:STDOUT: }
  1760. // CHECK:STDOUT:
  1761. // CHECK:STDOUT: interface @J {
  1762. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
  1763. // CHECK:STDOUT: %U: type = assoc_const_decl @U [concrete] {
  1764. // CHECK:STDOUT: %assoc0: %J.assoc_type = assoc_entity element0, @J.%U [concrete = constants.%assoc0]
  1765. // CHECK:STDOUT: }
  1766. // CHECK:STDOUT: %G.decl: %G.type = fn_decl @G [concrete = constants.%G] {
  1767. // CHECK:STDOUT: %self.patt: @G.%Self.as_type.loc5_14.1 (%Self.as_type) = binding_pattern self
  1768. // CHECK:STDOUT: %self.param_patt: @G.%Self.as_type.loc5_14.1 (%Self.as_type) = value_param_pattern %self.patt, call_param0
  1769. // CHECK:STDOUT: %v.patt: @G.%impl.elem0.loc5_23.1 (%impl.elem0.d9c3a6.1) = binding_pattern v
  1770. // CHECK:STDOUT: %v.param_patt: @G.%impl.elem0.loc5_23.1 (%impl.elem0.d9c3a6.1) = value_param_pattern %v.patt, call_param1
  1771. // CHECK:STDOUT: %return.patt: @G.%impl.elem0.loc5_23.1 (%impl.elem0.d9c3a6.1) = return_slot_pattern
  1772. // CHECK:STDOUT: %return.param_patt: @G.%impl.elem0.loc5_23.1 (%impl.elem0.d9c3a6.1) = out_param_pattern %return.patt, call_param2
  1773. // CHECK:STDOUT: } {
  1774. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_29: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_23.1 (constants.%Self.as_wit.iface0)]
  1775. // CHECK:STDOUT: %impl.elem0.loc5_29: type = impl_witness_access %Self.as_wit.iface0.loc5_29, element0 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.d9c3a6.1)]
  1776. // CHECK:STDOUT: %U.ref.loc5_29: type = name_ref U, %impl.elem0.loc5_29 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.d9c3a6.1)]
  1777. // CHECK:STDOUT: %self.param: @G.%Self.as_type.loc5_14.1 (%Self.as_type) = value_param call_param0
  1778. // CHECK:STDOUT: %.loc5_14.1: type = splice_block %.loc5_14.2 [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type)] {
  1779. // CHECK:STDOUT: %Self.ref: %J.type = name_ref Self, @J.%Self [symbolic = %Self (constants.%Self)]
  1780. // CHECK:STDOUT: %Self.as_type.loc5_14.2: type = facet_access_type %Self.ref [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type)]
  1781. // CHECK:STDOUT: %.loc5_14.2: type = converted %Self.ref, %Self.as_type.loc5_14.2 [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type)]
  1782. // CHECK:STDOUT: }
  1783. // CHECK:STDOUT: %self: @G.%Self.as_type.loc5_14.1 (%Self.as_type) = bind_name self, %self.param
  1784. // CHECK:STDOUT: %v.param: @G.%impl.elem0.loc5_23.1 (%impl.elem0.d9c3a6.1) = value_param call_param1
  1785. // CHECK:STDOUT: %.loc5_23: type = splice_block %U.ref.loc5_23 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.d9c3a6.1)] {
  1786. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_23.2: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_23.1 (constants.%Self.as_wit.iface0)]
  1787. // CHECK:STDOUT: %impl.elem0.loc5_23.2: type = impl_witness_access %Self.as_wit.iface0.loc5_23.2, element0 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.d9c3a6.1)]
  1788. // CHECK:STDOUT: %U.ref.loc5_23: type = name_ref U, %impl.elem0.loc5_23.2 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.d9c3a6.1)]
  1789. // CHECK:STDOUT: }
  1790. // CHECK:STDOUT: %v: @G.%impl.elem0.loc5_23.1 (%impl.elem0.d9c3a6.1) = bind_name v, %v.param
  1791. // CHECK:STDOUT: %return.param: ref @G.%impl.elem0.loc5_23.1 (%impl.elem0.d9c3a6.1) = out_param call_param2
  1792. // CHECK:STDOUT: %return: ref @G.%impl.elem0.loc5_23.1 (%impl.elem0.d9c3a6.1) = return_slot %return.param
  1793. // CHECK:STDOUT: }
  1794. // CHECK:STDOUT: %assoc1: %J.assoc_type = assoc_entity element1, %G.decl [concrete = constants.%assoc1]
  1795. // CHECK:STDOUT:
  1796. // CHECK:STDOUT: !members:
  1797. // CHECK:STDOUT: .Self = %Self
  1798. // CHECK:STDOUT: .U = @U.%assoc0
  1799. // CHECK:STDOUT: .G = %assoc1
  1800. // CHECK:STDOUT: witness = (%U, %G.decl)
  1801. // CHECK:STDOUT: }
  1802. // CHECK:STDOUT:
  1803. // CHECK:STDOUT: generic assoc_const @U(@J.%Self: %J.type) {
  1804. // CHECK:STDOUT: assoc_const U:! type;
  1805. // CHECK:STDOUT: }
  1806. // CHECK:STDOUT:
  1807. // CHECK:STDOUT: generic fn @G(@J.%Self: %J.type) {
  1808. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self)]
  1809. // CHECK:STDOUT: %Self.as_type.loc5_14.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type)]
  1810. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_23.1: <witness> = facet_access_witness %Self, element0 [symbolic = %Self.as_wit.iface0.loc5_23.1 (constants.%Self.as_wit.iface0)]
  1811. // CHECK:STDOUT: %impl.elem0.loc5_23.1: type = impl_witness_access %Self.as_wit.iface0.loc5_23.1, element0 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.d9c3a6.1)]
  1812. // CHECK:STDOUT:
  1813. // CHECK:STDOUT: fn[%self.param_patt: @G.%Self.as_type.loc5_14.1 (%Self.as_type)](%v.param_patt: @G.%impl.elem0.loc5_23.1 (%impl.elem0.d9c3a6.1)) -> @G.%impl.elem0.loc5_23.1 (%impl.elem0.d9c3a6.1);
  1814. // CHECK:STDOUT: }
  1815. // CHECK:STDOUT:
  1816. // CHECK:STDOUT: generic fn @GenericCallInterfaceQualified(%T.loc8_34.1: %J.type) {
  1817. // CHECK:STDOUT: %T.loc8_34.2: %J.type = bind_symbolic_name T, 0 [symbolic = %T.loc8_34.2 (constants.%T)]
  1818. // CHECK:STDOUT: %T.patt.loc8_34.2: %J.type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc8_34.2 (constants.%T.patt)]
  1819. // CHECK:STDOUT: %T.as_type.loc8_44.2: type = facet_access_type %T.loc8_34.2 [symbolic = %T.as_type.loc8_44.2 (constants.%T.as_type)]
  1820. // CHECK:STDOUT: %T.as_wit.iface0.loc8_51.2: <witness> = facet_access_witness %T.loc8_34.2, element0 [symbolic = %T.as_wit.iface0.loc8_51.2 (constants.%T.as_wit.iface0)]
  1821. // CHECK:STDOUT: %impl.elem0.loc8_51.2: type = impl_witness_access %T.as_wit.iface0.loc8_51.2, element0 [symbolic = %impl.elem0.loc8_51.2 (constants.%impl.elem0.d9c3a6.2)]
  1822. // CHECK:STDOUT:
  1823. // CHECK:STDOUT: !definition:
  1824. // CHECK:STDOUT: %require_complete.loc8_55: <witness> = require_complete_type @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2) [symbolic = %require_complete.loc8_55 (constants.%require_complete.d9a)]
  1825. // CHECK:STDOUT: %require_complete.loc8_42: <witness> = require_complete_type @GenericCallInterfaceQualified.%T.as_type.loc8_44.2 (%T.as_type) [symbolic = %require_complete.loc8_42 (constants.%require_complete.2a5)]
  1826. // CHECK:STDOUT: %J.facet: %J.type = facet_value %T.as_type.loc8_44.2, (%T.as_wit.iface0.loc8_51.2) [symbolic = %J.facet (constants.%J.facet.085e97.2)]
  1827. // CHECK:STDOUT: %.loc9_11: type = fn_type_with_self_type constants.%G.type, %J.facet [symbolic = %.loc9_11 (constants.%.9ac)]
  1828. // CHECK:STDOUT: %impl.elem1.loc9_11.2: @GenericCallInterfaceQualified.%.loc9_11 (%.9ac) = impl_witness_access %T.as_wit.iface0.loc8_51.2, element1 [symbolic = %impl.elem1.loc9_11.2 (constants.%impl.elem1)]
  1829. // CHECK:STDOUT: %specific_impl_fn.loc9_11.2: <specific function> = specific_impl_function %impl.elem1.loc9_11.2, @G(%J.facet) [symbolic = %specific_impl_fn.loc9_11.2 (constants.%specific_impl_fn)]
  1830. // CHECK:STDOUT:
  1831. // CHECK:STDOUT: fn[%T.patt.loc8_34.1: %J.type](%t.param_patt: @GenericCallInterfaceQualified.%T.as_type.loc8_44.2 (%T.as_type), %u.param_patt: @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2)) -> @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2) {
  1832. // CHECK:STDOUT: !entry:
  1833. // CHECK:STDOUT: %t.ref: @GenericCallInterfaceQualified.%T.as_type.loc8_44.2 (%T.as_type) = name_ref t, %t
  1834. // CHECK:STDOUT: %J.ref.loc9: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  1835. // CHECK:STDOUT: %G.ref: %J.assoc_type = name_ref G, @J.%assoc1 [concrete = constants.%assoc1]
  1836. // CHECK:STDOUT: %T.as_wit.iface0.loc9: <witness> = facet_access_witness constants.%T, element0 [symbolic = %T.as_wit.iface0.loc8_51.2 (constants.%T.as_wit.iface0)]
  1837. // CHECK:STDOUT: %impl.elem1.loc9_11.1: @GenericCallInterfaceQualified.%.loc9_11 (%.9ac) = impl_witness_access %T.as_wit.iface0.loc9, element1 [symbolic = %impl.elem1.loc9_11.2 (constants.%impl.elem1)]
  1838. // CHECK:STDOUT: %bound_method.loc9_11: <bound method> = bound_method %t.ref, %impl.elem1.loc9_11.1
  1839. // CHECK:STDOUT: %u.ref: @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2) = name_ref u, %u
  1840. // CHECK:STDOUT: %specific_impl_fn.loc9_11.1: <specific function> = specific_impl_function %impl.elem1.loc9_11.1, @G(constants.%J.facet.085e97.2) [symbolic = %specific_impl_fn.loc9_11.2 (constants.%specific_impl_fn)]
  1841. // CHECK:STDOUT: %bound_method.loc9_19: <bound method> = bound_method %t.ref, %specific_impl_fn.loc9_11.1
  1842. // CHECK:STDOUT: %.loc9_19: init @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2) = call %bound_method.loc9_19(%t.ref, %u.ref)
  1843. // CHECK:STDOUT: %.loc9_20.1: @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2) = value_of_initializer %.loc9_19
  1844. // CHECK:STDOUT: %.loc9_20.2: @GenericCallInterfaceQualified.%impl.elem0.loc8_51.2 (%impl.elem0.d9c3a6.2) = converted %.loc9_19, %.loc9_20.1
  1845. // CHECK:STDOUT: return %.loc9_20.2
  1846. // CHECK:STDOUT: }
  1847. // CHECK:STDOUT: }
  1848. // CHECK:STDOUT:
  1849. // CHECK:STDOUT: specific @U(constants.%Self) {}
  1850. // CHECK:STDOUT:
  1851. // CHECK:STDOUT: specific @U(constants.%J.facet.085e97.1) {}
  1852. // CHECK:STDOUT:
  1853. // CHECK:STDOUT: specific @G(constants.%Self) {
  1854. // CHECK:STDOUT: %Self => constants.%Self
  1855. // CHECK:STDOUT: %Self.as_type.loc5_14.1 => constants.%Self.as_type
  1856. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_23.1 => constants.%Self.as_wit.iface0
  1857. // CHECK:STDOUT: %impl.elem0.loc5_23.1 => constants.%impl.elem0.d9c3a6.1
  1858. // CHECK:STDOUT: }
  1859. // CHECK:STDOUT:
  1860. // CHECK:STDOUT: specific @U(constants.%J.facet.085e97.2) {}
  1861. // CHECK:STDOUT:
  1862. // CHECK:STDOUT: specific @GenericCallInterfaceQualified(constants.%T) {
  1863. // CHECK:STDOUT: %T.loc8_34.2 => constants.%T
  1864. // CHECK:STDOUT: %T.patt.loc8_34.2 => constants.%T.patt
  1865. // CHECK:STDOUT: %T.as_type.loc8_44.2 => constants.%T.as_type
  1866. // CHECK:STDOUT: %T.as_wit.iface0.loc8_51.2 => constants.%T.as_wit.iface0
  1867. // CHECK:STDOUT: %impl.elem0.loc8_51.2 => constants.%impl.elem0.d9c3a6.2
  1868. // CHECK:STDOUT: }
  1869. // CHECK:STDOUT:
  1870. // CHECK:STDOUT: specific @G(constants.%J.facet.085e97.2) {
  1871. // CHECK:STDOUT: %Self => constants.%J.facet.085e97.2
  1872. // CHECK:STDOUT: %Self.as_type.loc5_14.1 => constants.%T.as_type
  1873. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_23.1 => constants.%T.as_wit.iface0
  1874. // CHECK:STDOUT: %impl.elem0.loc5_23.1 => constants.%impl.elem0.d9c3a6.2
  1875. // CHECK:STDOUT: }
  1876. // CHECK:STDOUT:
  1877. // CHECK:STDOUT: specific @G(@GenericCallInterfaceQualified.%J.facet) {}
  1878. // CHECK:STDOUT:
  1879. // CHECK:STDOUT: --- fail_todo_use_where.carbon
  1880. // CHECK:STDOUT:
  1881. // CHECK:STDOUT: constants {
  1882. // CHECK:STDOUT: %J.type: type = facet_type <@J> [concrete]
  1883. // CHECK:STDOUT: %Self.ccd: %J.type = bind_symbolic_name Self, 0 [symbolic]
  1884. // CHECK:STDOUT: %J.assoc_type: type = assoc_entity_type @J [concrete]
  1885. // CHECK:STDOUT: %assoc0.411: %J.assoc_type = assoc_entity element0, @J.%U [concrete]
  1886. // CHECK:STDOUT: %Self.as_type.3df: type = facet_access_type %Self.ccd [symbolic]
  1887. // CHECK:STDOUT: %Self.as_wit.iface0: <witness> = facet_access_witness %Self.ccd, element0 [symbolic]
  1888. // CHECK:STDOUT: %J.facet.085: %J.type = facet_value %Self.as_type.3df, (%Self.as_wit.iface0) [symbolic]
  1889. // CHECK:STDOUT: %impl.elem0.d9c: type = impl_witness_access %Self.as_wit.iface0, element0 [symbolic]
  1890. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  1891. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  1892. // CHECK:STDOUT: %assoc1: %J.assoc_type = assoc_entity element1, @J.%F.decl [concrete]
  1893. // CHECK:STDOUT: %.Self: %J.type = bind_symbolic_name .Self [symbolic_self]
  1894. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self [symbolic_self]
  1895. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self, element0 [symbolic_self]
  1896. // CHECK:STDOUT: %J.facet.28c: %J.type = facet_value %.Self.as_type, (%.Self.as_wit.iface0) [symbolic_self]
  1897. // CHECK:STDOUT: %impl.elem0.53a: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self]
  1898. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  1899. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  1900. // CHECK:STDOUT: %J_where.type: type = facet_type <@J where %impl.elem0.53a = %i32> [concrete]
  1901. // CHECK:STDOUT: %T: %J_where.type = bind_symbolic_name T, 0 [symbolic]
  1902. // CHECK:STDOUT: %T.patt: %J_where.type = symbolic_binding_pattern T, 0 [symbolic]
  1903. // CHECK:STDOUT: %T.as_type: type = facet_access_type %T [symbolic]
  1904. // CHECK:STDOUT: %GenericCallFI32.type: type = fn_type @GenericCallFI32 [concrete]
  1905. // CHECK:STDOUT: %GenericCallFI32: %GenericCallFI32.type = struct_value () [concrete]
  1906. // CHECK:STDOUT: %require_complete.3e7: <witness> = require_complete_type %T.as_type [symbolic]
  1907. // CHECK:STDOUT: %T.as_wit.iface0: <witness> = facet_access_witness %T, element0 [symbolic]
  1908. // CHECK:STDOUT: %J.facet.869: %J.type = facet_value %T.as_type, (%T.as_wit.iface0) [symbolic]
  1909. // CHECK:STDOUT: %.861: type = fn_type_with_self_type %F.type, %J.facet.869 [symbolic]
  1910. // CHECK:STDOUT: %impl.elem1: %.861 = impl_witness_access %T.as_wit.iface0, element1 [symbolic]
  1911. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [concrete]
  1912. // CHECK:STDOUT: %impl.elem0.37e: type = impl_witness_access %T.as_wit.iface0, element0 [symbolic]
  1913. // CHECK:STDOUT: %specific_impl_fn: <specific function> = specific_impl_function %impl.elem1, @F(%J.facet.869) [symbolic]
  1914. // CHECK:STDOUT: %require_complete.8bd: <witness> = require_complete_type %impl.elem0.37e [symbolic]
  1915. // CHECK:STDOUT: %ImplicitAs.type.820: type = facet_type <@ImplicitAs, @ImplicitAs(%impl.elem0.37e)> [symbolic]
  1916. // CHECK:STDOUT: %require_complete.1ce: <witness> = require_complete_type %ImplicitAs.type.820 [symbolic]
  1917. // CHECK:STDOUT: }
  1918. // CHECK:STDOUT:
  1919. // CHECK:STDOUT: imports {
  1920. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  1921. // CHECK:STDOUT: .Int = %Core.Int
  1922. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  1923. // CHECK:STDOUT: import Core//prelude
  1924. // CHECK:STDOUT: import Core//prelude/...
  1925. // CHECK:STDOUT: }
  1926. // CHECK:STDOUT: }
  1927. // CHECK:STDOUT:
  1928. // CHECK:STDOUT: file {
  1929. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  1930. // CHECK:STDOUT: .Core = imports.%Core
  1931. // CHECK:STDOUT: .J = %J.decl
  1932. // CHECK:STDOUT: .GenericCallFI32 = %GenericCallFI32.decl
  1933. // CHECK:STDOUT: }
  1934. // CHECK:STDOUT: %Core.import = import Core
  1935. // CHECK:STDOUT: %J.decl: type = interface_decl @J [concrete = constants.%J.type] {} {}
  1936. // CHECK:STDOUT: %GenericCallFI32.decl: %GenericCallFI32.type = fn_decl @GenericCallFI32 [concrete = constants.%GenericCallFI32] {
  1937. // CHECK:STDOUT: %T.patt.loc8_20.1: %J_where.type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc8_20.2 (constants.%T.patt)]
  1938. // CHECK:STDOUT: %t.patt: @GenericCallFI32.%T.as_type.loc8_45.2 (%T.as_type) = binding_pattern t
  1939. // CHECK:STDOUT: %t.param_patt: @GenericCallFI32.%T.as_type.loc8_45.2 (%T.as_type) = value_param_pattern %t.patt, call_param0
  1940. // CHECK:STDOUT: %return.patt: %i32 = return_slot_pattern
  1941. // CHECK:STDOUT: %return.param_patt: %i32 = out_param_pattern %return.patt, call_param1
  1942. // CHECK:STDOUT: } {
  1943. // CHECK:STDOUT: %int_32.loc8_51: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  1944. // CHECK:STDOUT: %i32.loc8_51: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  1945. // CHECK:STDOUT: %.loc8_26.1: type = splice_block %.loc8_26.2 [concrete = constants.%J_where.type] {
  1946. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  1947. // CHECK:STDOUT: %.Self: %J.type = bind_symbolic_name .Self [symbolic_self = constants.%.Self]
  1948. // CHECK:STDOUT: %.Self.ref: %J.type = name_ref .Self, %.Self [symbolic_self = constants.%.Self]
  1949. // CHECK:STDOUT: %U.ref: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0.411]
  1950. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self.ref [symbolic_self = constants.%.Self.as_type]
  1951. // CHECK:STDOUT: %.loc8_32: type = converted %.Self.ref, %.Self.as_type [symbolic_self = constants.%.Self.as_type]
  1952. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self.ref, element0 [symbolic_self = constants.%.Self.as_wit.iface0]
  1953. // CHECK:STDOUT: %impl.elem0.loc8: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self = constants.%impl.elem0.53a]
  1954. // CHECK:STDOUT: %int_32.loc8_37: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  1955. // CHECK:STDOUT: %i32.loc8_37: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  1956. // CHECK:STDOUT: %.loc8_26.2: type = where_expr %.Self [concrete = constants.%J_where.type] {
  1957. // CHECK:STDOUT: requirement_rewrite %impl.elem0.loc8, %i32.loc8_37
  1958. // CHECK:STDOUT: }
  1959. // CHECK:STDOUT: }
  1960. // CHECK:STDOUT: %T.loc8_20.1: %J_where.type = bind_symbolic_name T, 0 [symbolic = %T.loc8_20.2 (constants.%T)]
  1961. // CHECK:STDOUT: %t.param: @GenericCallFI32.%T.as_type.loc8_45.2 (%T.as_type) = value_param call_param0
  1962. // CHECK:STDOUT: %.loc8_45.1: type = splice_block %.loc8_45.2 [symbolic = %T.as_type.loc8_45.2 (constants.%T.as_type)] {
  1963. // CHECK:STDOUT: %T.ref: %J_where.type = name_ref T, %T.loc8_20.1 [symbolic = %T.loc8_20.2 (constants.%T)]
  1964. // CHECK:STDOUT: %T.as_type.loc8_45.1: type = facet_access_type %T.ref [symbolic = %T.as_type.loc8_45.2 (constants.%T.as_type)]
  1965. // CHECK:STDOUT: %.loc8_45.2: type = converted %T.ref, %T.as_type.loc8_45.1 [symbolic = %T.as_type.loc8_45.2 (constants.%T.as_type)]
  1966. // CHECK:STDOUT: }
  1967. // CHECK:STDOUT: %t: @GenericCallFI32.%T.as_type.loc8_45.2 (%T.as_type) = bind_name t, %t.param
  1968. // CHECK:STDOUT: %return.param: ref %i32 = out_param call_param1
  1969. // CHECK:STDOUT: %return: ref %i32 = return_slot %return.param
  1970. // CHECK:STDOUT: }
  1971. // CHECK:STDOUT: }
  1972. // CHECK:STDOUT:
  1973. // CHECK:STDOUT: interface @J {
  1974. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.ccd]
  1975. // CHECK:STDOUT: %U: type = assoc_const_decl @U [concrete] {
  1976. // CHECK:STDOUT: %assoc0: %J.assoc_type = assoc_entity element0, @J.%U [concrete = constants.%assoc0.411]
  1977. // CHECK:STDOUT: }
  1978. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {
  1979. // CHECK:STDOUT: %u.patt: @F.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = binding_pattern u
  1980. // CHECK:STDOUT: %u.param_patt: @F.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = value_param_pattern %u.patt, call_param0
  1981. // CHECK:STDOUT: %return.patt: @F.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = return_slot_pattern
  1982. // CHECK:STDOUT: %return.param_patt: @F.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = out_param_pattern %return.patt, call_param1
  1983. // CHECK:STDOUT: } {
  1984. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_17: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  1985. // CHECK:STDOUT: %impl.elem0.loc5_17: type = impl_witness_access %Self.as_wit.iface0.loc5_17, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  1986. // CHECK:STDOUT: %U.ref.loc5_17: type = name_ref U, %impl.elem0.loc5_17 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  1987. // CHECK:STDOUT: %u.param: @F.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = value_param call_param0
  1988. // CHECK:STDOUT: %.loc5: type = splice_block %U.ref.loc5_11 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)] {
  1989. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.2: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  1990. // CHECK:STDOUT: %impl.elem0.loc5_11.2: type = impl_witness_access %Self.as_wit.iface0.loc5_11.2, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  1991. // CHECK:STDOUT: %U.ref.loc5_11: type = name_ref U, %impl.elem0.loc5_11.2 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  1992. // CHECK:STDOUT: }
  1993. // CHECK:STDOUT: %u: @F.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = bind_name u, %u.param
  1994. // CHECK:STDOUT: %return.param: ref @F.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = out_param call_param1
  1995. // CHECK:STDOUT: %return: ref @F.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = return_slot %return.param
  1996. // CHECK:STDOUT: }
  1997. // CHECK:STDOUT: %assoc1: %J.assoc_type = assoc_entity element1, %F.decl [concrete = constants.%assoc1]
  1998. // CHECK:STDOUT:
  1999. // CHECK:STDOUT: !members:
  2000. // CHECK:STDOUT: .Self = %Self
  2001. // CHECK:STDOUT: .U = @U.%assoc0
  2002. // CHECK:STDOUT: .F = %assoc1
  2003. // CHECK:STDOUT: witness = (%U, %F.decl)
  2004. // CHECK:STDOUT: }
  2005. // CHECK:STDOUT:
  2006. // CHECK:STDOUT: generic assoc_const @U(@J.%Self: %J.type) {
  2007. // CHECK:STDOUT: assoc_const U:! type;
  2008. // CHECK:STDOUT: }
  2009. // CHECK:STDOUT:
  2010. // CHECK:STDOUT: generic fn @F(@J.%Self: %J.type) {
  2011. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self.ccd)]
  2012. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1: <witness> = facet_access_witness %Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  2013. // CHECK:STDOUT: %impl.elem0.loc5_11.1: type = impl_witness_access %Self.as_wit.iface0.loc5_11.1, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  2014. // CHECK:STDOUT:
  2015. // CHECK:STDOUT: fn(%u.param_patt: @F.%impl.elem0.loc5_11.1 (%impl.elem0.d9c)) -> @F.%impl.elem0.loc5_11.1 (%impl.elem0.d9c);
  2016. // CHECK:STDOUT: }
  2017. // CHECK:STDOUT:
  2018. // CHECK:STDOUT: generic fn @GenericCallFI32(%T.loc8_20.1: %J_where.type) {
  2019. // CHECK:STDOUT: %T.loc8_20.2: %J_where.type = bind_symbolic_name T, 0 [symbolic = %T.loc8_20.2 (constants.%T)]
  2020. // CHECK:STDOUT: %T.patt.loc8_20.2: %J_where.type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc8_20.2 (constants.%T.patt)]
  2021. // CHECK:STDOUT: %T.as_type.loc8_45.2: type = facet_access_type %T.loc8_20.2 [symbolic = %T.as_type.loc8_45.2 (constants.%T.as_type)]
  2022. // CHECK:STDOUT:
  2023. // CHECK:STDOUT: !definition:
  2024. // CHECK:STDOUT: %require_complete.loc8: <witness> = require_complete_type @GenericCallFI32.%T.as_type.loc8_45.2 (%T.as_type) [symbolic = %require_complete.loc8 (constants.%require_complete.3e7)]
  2025. // CHECK:STDOUT: %T.as_wit.iface0.loc26_11.2: <witness> = facet_access_witness %T.loc8_20.2, element0 [symbolic = %T.as_wit.iface0.loc26_11.2 (constants.%T.as_wit.iface0)]
  2026. // CHECK:STDOUT: %J.facet: %J.type = facet_value %T.as_type.loc8_45.2, (%T.as_wit.iface0.loc26_11.2) [symbolic = %J.facet (constants.%J.facet.869)]
  2027. // CHECK:STDOUT: %.loc26_11.2: type = fn_type_with_self_type constants.%F.type, %J.facet [symbolic = %.loc26_11.2 (constants.%.861)]
  2028. // CHECK:STDOUT: %impl.elem1.loc26_11.2: @GenericCallFI32.%.loc26_11.2 (%.861) = impl_witness_access %T.as_wit.iface0.loc26_11.2, element1 [symbolic = %impl.elem1.loc26_11.2 (constants.%impl.elem1)]
  2029. // CHECK:STDOUT: %specific_impl_fn.loc26_11.2: <specific function> = specific_impl_function %impl.elem1.loc26_11.2, @F(%J.facet) [symbolic = %specific_impl_fn.loc26_11.2 (constants.%specific_impl_fn)]
  2030. // CHECK:STDOUT: %impl.elem0.loc26: type = impl_witness_access %T.as_wit.iface0.loc26_11.2, element0 [symbolic = %impl.elem0.loc26 (constants.%impl.elem0.37e)]
  2031. // CHECK:STDOUT: %require_complete.loc26_15: <witness> = require_complete_type @GenericCallFI32.%impl.elem0.loc26 (%impl.elem0.37e) [symbolic = %require_complete.loc26_15 (constants.%require_complete.8bd)]
  2032. // CHECK:STDOUT: %ImplicitAs.type: type = facet_type <@ImplicitAs, @ImplicitAs(%impl.elem0.loc26)> [symbolic = %ImplicitAs.type (constants.%ImplicitAs.type.820)]
  2033. // CHECK:STDOUT: %require_complete.loc26_14: <witness> = require_complete_type @GenericCallFI32.%ImplicitAs.type (%ImplicitAs.type.820) [symbolic = %require_complete.loc26_14 (constants.%require_complete.1ce)]
  2034. // CHECK:STDOUT:
  2035. // CHECK:STDOUT: fn[%T.patt.loc8_20.1: %J_where.type](%t.param_patt: @GenericCallFI32.%T.as_type.loc8_45.2 (%T.as_type)) -> %i32 {
  2036. // CHECK:STDOUT: !entry:
  2037. // CHECK:STDOUT: %t.ref: @GenericCallFI32.%T.as_type.loc8_45.2 (%T.as_type) = name_ref t, %t
  2038. // CHECK:STDOUT: %F.ref: %J.assoc_type = name_ref F, @J.%assoc1 [concrete = constants.%assoc1]
  2039. // CHECK:STDOUT: %T.as_type.loc26: type = facet_access_type constants.%T [symbolic = %T.as_type.loc8_45.2 (constants.%T.as_type)]
  2040. // CHECK:STDOUT: %.loc26_11.1: type = converted constants.%T, %T.as_type.loc26 [symbolic = %T.as_type.loc8_45.2 (constants.%T.as_type)]
  2041. // CHECK:STDOUT: %T.as_wit.iface0.loc26_11.1: <witness> = facet_access_witness constants.%T, element0 [symbolic = %T.as_wit.iface0.loc26_11.2 (constants.%T.as_wit.iface0)]
  2042. // CHECK:STDOUT: %impl.elem1.loc26_11.1: @GenericCallFI32.%.loc26_11.2 (%.861) = impl_witness_access %T.as_wit.iface0.loc26_11.1, element1 [symbolic = %impl.elem1.loc26_11.2 (constants.%impl.elem1)]
  2043. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [concrete = constants.%int_2]
  2044. // CHECK:STDOUT: %specific_impl_fn.loc26_11.1: <specific function> = specific_impl_function %impl.elem1.loc26_11.1, @F(constants.%J.facet.869) [symbolic = %specific_impl_fn.loc26_11.2 (constants.%specific_impl_fn)]
  2045. // CHECK:STDOUT: %.loc26_14: @GenericCallFI32.%impl.elem0.loc26 (%impl.elem0.37e) = converted %int_2, <error> [concrete = <error>]
  2046. // CHECK:STDOUT: %.loc26_15: init @GenericCallFI32.%impl.elem0.loc26 (%impl.elem0.37e) = call %specific_impl_fn.loc26_11.1(<error>) [concrete = <error>]
  2047. // CHECK:STDOUT: %.loc26_16: %i32 = converted %.loc26_15, <error> [concrete = <error>]
  2048. // CHECK:STDOUT: return <error>
  2049. // CHECK:STDOUT: }
  2050. // CHECK:STDOUT: }
  2051. // CHECK:STDOUT:
  2052. // CHECK:STDOUT: specific @U(constants.%Self.ccd) {}
  2053. // CHECK:STDOUT:
  2054. // CHECK:STDOUT: specific @U(constants.%J.facet.085) {}
  2055. // CHECK:STDOUT:
  2056. // CHECK:STDOUT: specific @F(constants.%Self.ccd) {
  2057. // CHECK:STDOUT: %Self => constants.%Self.ccd
  2058. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1 => constants.%Self.as_wit.iface0
  2059. // CHECK:STDOUT: %impl.elem0.loc5_11.1 => constants.%impl.elem0.d9c
  2060. // CHECK:STDOUT: }
  2061. // CHECK:STDOUT:
  2062. // CHECK:STDOUT: specific @U(constants.%J.facet.28c) {}
  2063. // CHECK:STDOUT:
  2064. // CHECK:STDOUT: specific @GenericCallFI32(constants.%T) {
  2065. // CHECK:STDOUT: %T.loc8_20.2 => constants.%T
  2066. // CHECK:STDOUT: %T.patt.loc8_20.2 => constants.%T.patt
  2067. // CHECK:STDOUT: %T.as_type.loc8_45.2 => constants.%T.as_type
  2068. // CHECK:STDOUT: }
  2069. // CHECK:STDOUT:
  2070. // CHECK:STDOUT: specific @F(constants.%J.facet.869) {
  2071. // CHECK:STDOUT: %Self => constants.%J.facet.869
  2072. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1 => constants.%T.as_wit.iface0
  2073. // CHECK:STDOUT: %impl.elem0.loc5_11.1 => constants.%impl.elem0.37e
  2074. // CHECK:STDOUT: }
  2075. // CHECK:STDOUT:
  2076. // CHECK:STDOUT: specific @F(@GenericCallFI32.%J.facet) {}
  2077. // CHECK:STDOUT:
  2078. // CHECK:STDOUT: --- fail_todo_use_associated_constant_in_impl.carbon
  2079. // CHECK:STDOUT:
  2080. // CHECK:STDOUT: constants {
  2081. // CHECK:STDOUT: %J.type: type = facet_type <@J> [concrete]
  2082. // CHECK:STDOUT: %Self.ccd: %J.type = bind_symbolic_name Self, 0 [symbolic]
  2083. // CHECK:STDOUT: %J.assoc_type: type = assoc_entity_type @J [concrete]
  2084. // CHECK:STDOUT: %assoc0.411: %J.assoc_type = assoc_entity element0, @J.%U [concrete]
  2085. // CHECK:STDOUT: %Self.as_type.3df: type = facet_access_type %Self.ccd [symbolic]
  2086. // CHECK:STDOUT: %Self.as_wit.iface0: <witness> = facet_access_witness %Self.ccd, element0 [symbolic]
  2087. // CHECK:STDOUT: %J.facet.085: %J.type = facet_value %Self.as_type.3df, (%Self.as_wit.iface0) [symbolic]
  2088. // CHECK:STDOUT: %impl.elem0.d9c: type = impl_witness_access %Self.as_wit.iface0, element0 [symbolic]
  2089. // CHECK:STDOUT: %F.type.c14: type = fn_type @F.1 [concrete]
  2090. // CHECK:STDOUT: %F.b71: %F.type.c14 = struct_value () [concrete]
  2091. // CHECK:STDOUT: %assoc1: %J.assoc_type = assoc_entity element1, @J.%F.decl [concrete]
  2092. // CHECK:STDOUT: %E: type = class_type @E [concrete]
  2093. // CHECK:STDOUT: %.Self: %J.type = bind_symbolic_name .Self [symbolic_self]
  2094. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self [symbolic_self]
  2095. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self, element0 [symbolic_self]
  2096. // CHECK:STDOUT: %J.facet.28c: %J.type = facet_value %.Self.as_type, (%.Self.as_wit.iface0) [symbolic_self]
  2097. // CHECK:STDOUT: %impl.elem0.53a: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self]
  2098. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  2099. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  2100. // CHECK:STDOUT: %J_where.type: type = facet_type <@J where %impl.elem0.53a = %i32> [concrete]
  2101. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (%i32, <error>) [concrete]
  2102. // CHECK:STDOUT: %F.type.e5e: type = fn_type @F.2 [concrete]
  2103. // CHECK:STDOUT: %F.c81: %F.type.e5e = struct_value () [concrete]
  2104. // CHECK:STDOUT: %J.facet.441: %J.type = facet_value %E, (%impl_witness) [concrete]
  2105. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  2106. // CHECK:STDOUT: %complete_type.357: <witness> = complete_type_witness %empty_struct_type [concrete]
  2107. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [concrete]
  2108. // CHECK:STDOUT: }
  2109. // CHECK:STDOUT:
  2110. // CHECK:STDOUT: imports {
  2111. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  2112. // CHECK:STDOUT: .Int = %Core.Int
  2113. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  2114. // CHECK:STDOUT: .Add = %Core.Add
  2115. // CHECK:STDOUT: import Core//prelude
  2116. // CHECK:STDOUT: import Core//prelude/...
  2117. // CHECK:STDOUT: }
  2118. // CHECK:STDOUT: }
  2119. // CHECK:STDOUT:
  2120. // CHECK:STDOUT: file {
  2121. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  2122. // CHECK:STDOUT: .Core = imports.%Core
  2123. // CHECK:STDOUT: .J = %J.decl
  2124. // CHECK:STDOUT: .E = %E.decl
  2125. // CHECK:STDOUT: }
  2126. // CHECK:STDOUT: %Core.import = import Core
  2127. // CHECK:STDOUT: %J.decl: type = interface_decl @J [concrete = constants.%J.type] {} {}
  2128. // CHECK:STDOUT: %E.decl: type = class_decl @E [concrete = constants.%E] {} {}
  2129. // CHECK:STDOUT: }
  2130. // CHECK:STDOUT:
  2131. // CHECK:STDOUT: interface @J {
  2132. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.ccd]
  2133. // CHECK:STDOUT: %U: type = assoc_const_decl @U [concrete] {
  2134. // CHECK:STDOUT: %assoc0: %J.assoc_type = assoc_entity element0, @J.%U [concrete = constants.%assoc0.411]
  2135. // CHECK:STDOUT: }
  2136. // CHECK:STDOUT: %F.decl: %F.type.c14 = fn_decl @F.1 [concrete = constants.%F.b71] {
  2137. // CHECK:STDOUT: %u.patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = binding_pattern u
  2138. // CHECK:STDOUT: %u.param_patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = value_param_pattern %u.patt, call_param0
  2139. // CHECK:STDOUT: %return.patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = return_slot_pattern
  2140. // CHECK:STDOUT: %return.param_patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = out_param_pattern %return.patt, call_param1
  2141. // CHECK:STDOUT: } {
  2142. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_17: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  2143. // CHECK:STDOUT: %impl.elem0.loc5_17: type = impl_witness_access %Self.as_wit.iface0.loc5_17, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  2144. // CHECK:STDOUT: %U.ref.loc5_17: type = name_ref U, %impl.elem0.loc5_17 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  2145. // CHECK:STDOUT: %u.param: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = value_param call_param0
  2146. // CHECK:STDOUT: %.loc5: type = splice_block %U.ref.loc5_11 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)] {
  2147. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.2: <witness> = facet_access_witness @J.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  2148. // CHECK:STDOUT: %impl.elem0.loc5_11.2: type = impl_witness_access %Self.as_wit.iface0.loc5_11.2, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  2149. // CHECK:STDOUT: %U.ref.loc5_11: type = name_ref U, %impl.elem0.loc5_11.2 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  2150. // CHECK:STDOUT: }
  2151. // CHECK:STDOUT: %u: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = bind_name u, %u.param
  2152. // CHECK:STDOUT: %return.param: ref @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = out_param call_param1
  2153. // CHECK:STDOUT: %return: ref @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c) = return_slot %return.param
  2154. // CHECK:STDOUT: }
  2155. // CHECK:STDOUT: %assoc1: %J.assoc_type = assoc_entity element1, %F.decl [concrete = constants.%assoc1]
  2156. // CHECK:STDOUT:
  2157. // CHECK:STDOUT: !members:
  2158. // CHECK:STDOUT: .Self = %Self
  2159. // CHECK:STDOUT: .U = @U.%assoc0
  2160. // CHECK:STDOUT: .F = %assoc1
  2161. // CHECK:STDOUT: witness = (%U, %F.decl)
  2162. // CHECK:STDOUT: }
  2163. // CHECK:STDOUT:
  2164. // CHECK:STDOUT: generic assoc_const @U(@J.%Self: %J.type) {
  2165. // CHECK:STDOUT: assoc_const U:! type;
  2166. // CHECK:STDOUT: }
  2167. // CHECK:STDOUT:
  2168. // CHECK:STDOUT: impl @impl: %Self.ref as %.loc9_20 {
  2169. // CHECK:STDOUT: %F.decl: %F.type.e5e = fn_decl @F.2 [concrete = constants.%F.c81] {
  2170. // CHECK:STDOUT: %u.patt: <error> = binding_pattern u
  2171. // CHECK:STDOUT: %u.param_patt: <error> = value_param_pattern %u.patt, call_param0 [concrete = <error>]
  2172. // CHECK:STDOUT: %return.patt: <error> = return_slot_pattern
  2173. // CHECK:STDOUT: %return.param_patt: <error> = out_param_pattern %return.patt, call_param1
  2174. // CHECK:STDOUT: } {
  2175. // CHECK:STDOUT: %U.ref.loc24_19: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0.411]
  2176. // CHECK:STDOUT: %.loc24_19: type = converted %U.ref.loc24_19, <error> [concrete = <error>]
  2177. // CHECK:STDOUT: %u.param: <error> = value_param call_param0
  2178. // CHECK:STDOUT: %.1: <error> = splice_block <error> [concrete = <error>] {
  2179. // CHECK:STDOUT: %U.ref.loc24_13: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0.411]
  2180. // CHECK:STDOUT: %.loc24_13: type = converted %U.ref.loc24_13, <error> [concrete = <error>]
  2181. // CHECK:STDOUT: }
  2182. // CHECK:STDOUT: %u: <error> = bind_name u, %u.param
  2183. // CHECK:STDOUT: %return.param: ref <error> = out_param call_param1
  2184. // CHECK:STDOUT: %return: ref <error> = return_slot %return.param
  2185. // CHECK:STDOUT: }
  2186. // CHECK:STDOUT:
  2187. // CHECK:STDOUT: !members:
  2188. // CHECK:STDOUT: .U = <poisoned>
  2189. // CHECK:STDOUT: .F = %F.decl
  2190. // CHECK:STDOUT: witness = @E.%impl_witness
  2191. // CHECK:STDOUT: }
  2192. // CHECK:STDOUT:
  2193. // CHECK:STDOUT: class @E {
  2194. // CHECK:STDOUT: impl_decl @impl [concrete] {} {
  2195. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%E [concrete = constants.%E]
  2196. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  2197. // CHECK:STDOUT: %.Self: %J.type = bind_symbolic_name .Self [symbolic_self = constants.%.Self]
  2198. // CHECK:STDOUT: %.Self.ref: %J.type = name_ref .Self, %.Self [symbolic_self = constants.%.Self]
  2199. // CHECK:STDOUT: %U.ref: %J.assoc_type = name_ref U, @U.%assoc0 [concrete = constants.%assoc0.411]
  2200. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self.ref [symbolic_self = constants.%.Self.as_type]
  2201. // CHECK:STDOUT: %.loc9_26: type = converted %.Self.ref, %.Self.as_type [symbolic_self = constants.%.Self.as_type]
  2202. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self.ref, element0 [symbolic_self = constants.%.Self.as_wit.iface0]
  2203. // CHECK:STDOUT: %impl.elem0: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self = constants.%impl.elem0.53a]
  2204. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  2205. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  2206. // CHECK:STDOUT: %.loc9_20: type = where_expr %.Self [concrete = constants.%J_where.type] {
  2207. // CHECK:STDOUT: requirement_rewrite %impl.elem0, %i32
  2208. // CHECK:STDOUT: }
  2209. // CHECK:STDOUT: }
  2210. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (constants.%i32, <error>) [concrete = constants.%impl_witness]
  2211. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  2212. // CHECK:STDOUT: complete_type_witness = %complete_type
  2213. // CHECK:STDOUT:
  2214. // CHECK:STDOUT: !members:
  2215. // CHECK:STDOUT: .Self = constants.%E
  2216. // CHECK:STDOUT: .J = <poisoned>
  2217. // CHECK:STDOUT: .U = <poisoned>
  2218. // CHECK:STDOUT: extend @impl.%.loc9_20
  2219. // CHECK:STDOUT: }
  2220. // CHECK:STDOUT:
  2221. // CHECK:STDOUT: generic fn @F.1(@J.%Self: %J.type) {
  2222. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self.ccd)]
  2223. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1: <witness> = facet_access_witness %Self, element0 [symbolic = %Self.as_wit.iface0.loc5_11.1 (constants.%Self.as_wit.iface0)]
  2224. // CHECK:STDOUT: %impl.elem0.loc5_11.1: type = impl_witness_access %Self.as_wit.iface0.loc5_11.1, element0 [symbolic = %impl.elem0.loc5_11.1 (constants.%impl.elem0.d9c)]
  2225. // CHECK:STDOUT:
  2226. // CHECK:STDOUT: fn(%u.param_patt: @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c)) -> @F.1.%impl.elem0.loc5_11.1 (%impl.elem0.d9c);
  2227. // CHECK:STDOUT: }
  2228. // CHECK:STDOUT:
  2229. // CHECK:STDOUT: fn @F.2(%u.param_patt: <error>) -> <error> {
  2230. // CHECK:STDOUT: !entry:
  2231. // CHECK:STDOUT: %u.ref: <error> = name_ref u, %u [concrete = <error>]
  2232. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [concrete = constants.%int_1]
  2233. // CHECK:STDOUT: %impl.elem0: <error> = impl_witness_access <error>, element0 [concrete = <error>]
  2234. // CHECK:STDOUT: return <error>
  2235. // CHECK:STDOUT: }
  2236. // CHECK:STDOUT:
  2237. // CHECK:STDOUT: specific @U(constants.%Self.ccd) {}
  2238. // CHECK:STDOUT:
  2239. // CHECK:STDOUT: specific @U(constants.%J.facet.085) {}
  2240. // CHECK:STDOUT:
  2241. // CHECK:STDOUT: specific @F.1(constants.%Self.ccd) {
  2242. // CHECK:STDOUT: %Self => constants.%Self.ccd
  2243. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1 => constants.%Self.as_wit.iface0
  2244. // CHECK:STDOUT: %impl.elem0.loc5_11.1 => constants.%impl.elem0.d9c
  2245. // CHECK:STDOUT: }
  2246. // CHECK:STDOUT:
  2247. // CHECK:STDOUT: specific @U(constants.%J.facet.28c) {}
  2248. // CHECK:STDOUT:
  2249. // CHECK:STDOUT: specific @F.1(constants.%J.facet.441) {
  2250. // CHECK:STDOUT: %Self => constants.%J.facet.441
  2251. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_11.1 => constants.%impl_witness
  2252. // CHECK:STDOUT: %impl.elem0.loc5_11.1 => constants.%i32
  2253. // CHECK:STDOUT: }
  2254. // CHECK:STDOUT:
  2255. // CHECK:STDOUT: --- fail_todo_self_period_associated_type.carbon
  2256. // CHECK:STDOUT:
  2257. // CHECK:STDOUT: constants {
  2258. // CHECK:STDOUT: %J2.type: type = facet_type <@J2> [concrete]
  2259. // CHECK:STDOUT: %Self: %J2.type = bind_symbolic_name Self, 0 [symbolic]
  2260. // CHECK:STDOUT: %J2.assoc_type: type = assoc_entity_type @J2 [concrete]
  2261. // CHECK:STDOUT: %assoc0: %J2.assoc_type = assoc_entity element0, @J2.%U2 [concrete]
  2262. // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self [symbolic]
  2263. // CHECK:STDOUT: %F.type.c41: type = fn_type @F.1 [concrete]
  2264. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  2265. // CHECK:STDOUT: %F.932: %F.type.c41 = struct_value () [concrete]
  2266. // CHECK:STDOUT: %assoc1: %J2.assoc_type = assoc_entity element1, @J2.%F.decl [concrete]
  2267. // CHECK:STDOUT: %.Self: %J2.type = bind_symbolic_name .Self [symbolic_self]
  2268. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self [symbolic_self]
  2269. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self, element0 [symbolic_self]
  2270. // CHECK:STDOUT: %J2.facet.afd: %J2.type = facet_value %.Self.as_type, (%.Self.as_wit.iface0) [symbolic_self]
  2271. // CHECK:STDOUT: %impl.elem0: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self]
  2272. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  2273. // CHECK:STDOUT: %J2_where.type.a84: type = facet_type <@J2 where %impl.elem0 = %empty_struct_type> [concrete]
  2274. // CHECK:STDOUT: %impl_witness.f71: <witness> = impl_witness (%empty_struct_type, <error>) [concrete]
  2275. // CHECK:STDOUT: %F.type.aee: type = fn_type @F.2 [concrete]
  2276. // CHECK:STDOUT: %F.243: %F.type.aee = struct_value () [concrete]
  2277. // CHECK:STDOUT: %J2.facet.fdd: %J2.type = facet_value %empty_tuple.type, (%impl_witness.f71) [concrete]
  2278. // CHECK:STDOUT: %C2: type = class_type @C2 [concrete]
  2279. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete]
  2280. // CHECK:STDOUT: %J2_where.type.4f1: type = facet_type <@J2 where %impl.elem0 = %C2> [concrete]
  2281. // CHECK:STDOUT: %impl_witness.d84: <witness> = impl_witness (%C2, <error>) [concrete]
  2282. // CHECK:STDOUT: %F.type.ea3: type = fn_type @F.3 [concrete]
  2283. // CHECK:STDOUT: %F.81f: %F.type.ea3 = struct_value () [concrete]
  2284. // CHECK:STDOUT: %J2.facet.f36: %J2.type = facet_value %C2, (%impl_witness.d84) [concrete]
  2285. // CHECK:STDOUT: }
  2286. // CHECK:STDOUT:
  2287. // CHECK:STDOUT: imports {
  2288. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  2289. // CHECK:STDOUT: import Core//prelude
  2290. // CHECK:STDOUT: import Core//prelude/...
  2291. // CHECK:STDOUT: }
  2292. // CHECK:STDOUT: }
  2293. // CHECK:STDOUT:
  2294. // CHECK:STDOUT: file {
  2295. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  2296. // CHECK:STDOUT: .Core = imports.%Core
  2297. // CHECK:STDOUT: .J2 = %J2.decl
  2298. // CHECK:STDOUT: .C2 = %C2.decl
  2299. // CHECK:STDOUT: }
  2300. // CHECK:STDOUT: %Core.import = import Core
  2301. // CHECK:STDOUT: %J2.decl: type = interface_decl @J2 [concrete = constants.%J2.type] {} {}
  2302. // CHECK:STDOUT: impl_decl @impl.8b6 [concrete] {} {
  2303. // CHECK:STDOUT: %.loc22_7.1: %empty_tuple.type = tuple_literal ()
  2304. // CHECK:STDOUT: %.loc22_7.2: type = converted %.loc22_7.1, constants.%empty_tuple.type [concrete = constants.%empty_tuple.type]
  2305. // CHECK:STDOUT: %J2.ref: type = name_ref J2, file.%J2.decl [concrete = constants.%J2.type]
  2306. // CHECK:STDOUT: %.Self: %J2.type = bind_symbolic_name .Self [symbolic_self = constants.%.Self]
  2307. // CHECK:STDOUT: %.Self.ref: %J2.type = name_ref .Self, %.Self [symbolic_self = constants.%.Self]
  2308. // CHECK:STDOUT: %U2.ref: %J2.assoc_type = name_ref U2, @U2.%assoc0 [concrete = constants.%assoc0]
  2309. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self.ref [symbolic_self = constants.%.Self.as_type]
  2310. // CHECK:STDOUT: %.loc22_21: type = converted %.Self.ref, %.Self.as_type [symbolic_self = constants.%.Self.as_type]
  2311. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self.ref, element0 [symbolic_self = constants.%.Self.as_wit.iface0]
  2312. // CHECK:STDOUT: %impl.elem0: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self = constants.%impl.elem0]
  2313. // CHECK:STDOUT: %.loc22_28.1: %empty_struct_type = struct_literal ()
  2314. // CHECK:STDOUT: %.loc22_28.2: type = converted %.loc22_28.1, constants.%empty_struct_type [concrete = constants.%empty_struct_type]
  2315. // CHECK:STDOUT: %.loc22_15: type = where_expr %.Self [concrete = constants.%J2_where.type.a84] {
  2316. // CHECK:STDOUT: requirement_rewrite %impl.elem0, %.loc22_28.2
  2317. // CHECK:STDOUT: }
  2318. // CHECK:STDOUT: }
  2319. // CHECK:STDOUT: %impl_witness.loc22: <witness> = impl_witness (constants.%empty_struct_type, <error>) [concrete = constants.%impl_witness.f71]
  2320. // CHECK:STDOUT: %C2.decl: type = class_decl @C2 [concrete = constants.%C2] {} {}
  2321. // CHECK:STDOUT: impl_decl @impl.3df [concrete] {} {
  2322. // CHECK:STDOUT: %C2.ref.loc31_6: type = name_ref C2, file.%C2.decl [concrete = constants.%C2]
  2323. // CHECK:STDOUT: %J2.ref: type = name_ref J2, file.%J2.decl [concrete = constants.%J2.type]
  2324. // CHECK:STDOUT: %.Self: %J2.type = bind_symbolic_name .Self [symbolic_self = constants.%.Self]
  2325. // CHECK:STDOUT: %.Self.ref: %J2.type = name_ref .Self, %.Self [symbolic_self = constants.%.Self]
  2326. // CHECK:STDOUT: %U2.ref: %J2.assoc_type = name_ref U2, @U2.%assoc0 [concrete = constants.%assoc0]
  2327. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self.ref [symbolic_self = constants.%.Self.as_type]
  2328. // CHECK:STDOUT: %.loc31_21: type = converted %.Self.ref, %.Self.as_type [symbolic_self = constants.%.Self.as_type]
  2329. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self.ref, element0 [symbolic_self = constants.%.Self.as_wit.iface0]
  2330. // CHECK:STDOUT: %impl.elem0: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self = constants.%impl.elem0]
  2331. // CHECK:STDOUT: %C2.ref.loc31_27: type = name_ref C2, file.%C2.decl [concrete = constants.%C2]
  2332. // CHECK:STDOUT: %.loc31_15: type = where_expr %.Self [concrete = constants.%J2_where.type.4f1] {
  2333. // CHECK:STDOUT: requirement_rewrite %impl.elem0, %C2.ref.loc31_27
  2334. // CHECK:STDOUT: }
  2335. // CHECK:STDOUT: }
  2336. // CHECK:STDOUT: %impl_witness.loc31: <witness> = impl_witness (constants.%C2, <error>) [concrete = constants.%impl_witness.d84]
  2337. // CHECK:STDOUT: }
  2338. // CHECK:STDOUT:
  2339. // CHECK:STDOUT: interface @J2 {
  2340. // CHECK:STDOUT: %Self: %J2.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
  2341. // CHECK:STDOUT: %U2: type = assoc_const_decl @U2 [concrete] {
  2342. // CHECK:STDOUT: %assoc0: %J2.assoc_type = assoc_entity element0, @J2.%U2 [concrete = constants.%assoc0]
  2343. // CHECK:STDOUT: }
  2344. // CHECK:STDOUT: %F.decl: %F.type.c41 = fn_decl @F.1 [concrete = constants.%F.932] {
  2345. // CHECK:STDOUT: %self.patt: @F.1.%Self.as_type.loc19_14.1 (%Self.as_type) = binding_pattern self
  2346. // CHECK:STDOUT: %self.param_patt: @F.1.%Self.as_type.loc19_14.1 (%Self.as_type) = value_param_pattern %self.patt, call_param0
  2347. // CHECK:STDOUT: %z.patt: <error> = binding_pattern z
  2348. // CHECK:STDOUT: %z.param_patt: <error> = value_param_pattern %z.patt, call_param1 [concrete = <error>]
  2349. // CHECK:STDOUT: %return.patt: <error> = return_slot_pattern
  2350. // CHECK:STDOUT: %return.param_patt: <error> = out_param_pattern %return.patt, call_param2
  2351. // CHECK:STDOUT: } {
  2352. // CHECK:STDOUT: %Self.ref.loc19_35: %J2.type = name_ref Self, @J2.%Self [symbolic = %Self (constants.%Self)]
  2353. // CHECK:STDOUT: %self.param: @F.1.%Self.as_type.loc19_14.1 (%Self.as_type) = value_param call_param0
  2354. // CHECK:STDOUT: %.loc19_14.1: type = splice_block %.loc19_14.2 [symbolic = %Self.as_type.loc19_14.1 (constants.%Self.as_type)] {
  2355. // CHECK:STDOUT: %Self.ref.loc19_14: %J2.type = name_ref Self, @J2.%Self [symbolic = %Self (constants.%Self)]
  2356. // CHECK:STDOUT: %Self.as_type.loc19_14.2: type = facet_access_type %Self.ref.loc19_14 [symbolic = %Self.as_type.loc19_14.1 (constants.%Self.as_type)]
  2357. // CHECK:STDOUT: %.loc19_14.2: type = converted %Self.ref.loc19_14, %Self.as_type.loc19_14.2 [symbolic = %Self.as_type.loc19_14.1 (constants.%Self.as_type)]
  2358. // CHECK:STDOUT: }
  2359. // CHECK:STDOUT: %self: @F.1.%Self.as_type.loc19_14.1 (%Self.as_type) = bind_name self, %self.param
  2360. // CHECK:STDOUT: %z.param: <error> = value_param call_param1
  2361. // CHECK:STDOUT: %Self.ref.loc19_23: %J2.type = name_ref Self, @J2.%Self [symbolic = %Self (constants.%Self)]
  2362. // CHECK:STDOUT: %z: <error> = bind_name z, %z.param
  2363. // CHECK:STDOUT: %return.param: ref <error> = out_param call_param2
  2364. // CHECK:STDOUT: %return: ref <error> = return_slot %return.param
  2365. // CHECK:STDOUT: }
  2366. // CHECK:STDOUT: %assoc1: %J2.assoc_type = assoc_entity element1, %F.decl [concrete = constants.%assoc1]
  2367. // CHECK:STDOUT:
  2368. // CHECK:STDOUT: !members:
  2369. // CHECK:STDOUT: .Self = %Self
  2370. // CHECK:STDOUT: .U2 = @U2.%assoc0
  2371. // CHECK:STDOUT: .F = %assoc1
  2372. // CHECK:STDOUT: witness = (%U2, %F.decl)
  2373. // CHECK:STDOUT: }
  2374. // CHECK:STDOUT:
  2375. // CHECK:STDOUT: generic assoc_const @U2(@J2.%Self: %J2.type) {
  2376. // CHECK:STDOUT: assoc_const U2:! type;
  2377. // CHECK:STDOUT: }
  2378. // CHECK:STDOUT:
  2379. // CHECK:STDOUT: impl @impl.8b6: %.loc22_7.2 as %.loc22_15 {
  2380. // CHECK:STDOUT: %F.decl: %F.type.aee = fn_decl @F.2 [concrete = constants.%F.243] {
  2381. // CHECK:STDOUT: %self.patt: %empty_tuple.type = binding_pattern self
  2382. // CHECK:STDOUT: %self.param_patt: %empty_tuple.type = value_param_pattern %self.patt, call_param0
  2383. // CHECK:STDOUT: %z.patt: %empty_struct_type = binding_pattern z
  2384. // CHECK:STDOUT: %z.param_patt: %empty_struct_type = value_param_pattern %z.patt, call_param1
  2385. // CHECK:STDOUT: %return.patt: %empty_struct_type = return_slot_pattern
  2386. // CHECK:STDOUT: %return.param_patt: %empty_struct_type = out_param_pattern %return.patt, call_param2
  2387. // CHECK:STDOUT: } {
  2388. // CHECK:STDOUT: %.loc23_31.1: %empty_struct_type = struct_literal ()
  2389. // CHECK:STDOUT: %.loc23_31.2: type = converted %.loc23_31.1, constants.%empty_struct_type [concrete = constants.%empty_struct_type]
  2390. // CHECK:STDOUT: %self.param: %empty_tuple.type = value_param call_param0
  2391. // CHECK:STDOUT: %Self.ref: type = name_ref Self, @impl.8b6.%.loc22_7.2 [concrete = constants.%empty_tuple.type]
  2392. // CHECK:STDOUT: %self: %empty_tuple.type = bind_name self, %self.param
  2393. // CHECK:STDOUT: %z.param: %empty_struct_type = value_param call_param1
  2394. // CHECK:STDOUT: %.loc23_24.1: type = splice_block %.loc23_24.3 [concrete = constants.%empty_struct_type] {
  2395. // CHECK:STDOUT: %.loc23_24.2: %empty_struct_type = struct_literal ()
  2396. // CHECK:STDOUT: %.loc23_24.3: type = converted %.loc23_24.2, constants.%empty_struct_type [concrete = constants.%empty_struct_type]
  2397. // CHECK:STDOUT: }
  2398. // CHECK:STDOUT: %z: %empty_struct_type = bind_name z, %z.param
  2399. // CHECK:STDOUT: %return.param: ref %empty_struct_type = out_param call_param2
  2400. // CHECK:STDOUT: %return: ref %empty_struct_type = return_slot %return.param
  2401. // CHECK:STDOUT: }
  2402. // CHECK:STDOUT:
  2403. // CHECK:STDOUT: !members:
  2404. // CHECK:STDOUT: .F = %F.decl
  2405. // CHECK:STDOUT: witness = file.%impl_witness.loc22
  2406. // CHECK:STDOUT: }
  2407. // CHECK:STDOUT:
  2408. // CHECK:STDOUT: impl @impl.3df: %C2.ref.loc31_6 as %.loc31_15 {
  2409. // CHECK:STDOUT: %F.decl: %F.type.ea3 = fn_decl @F.3 [concrete = constants.%F.81f] {
  2410. // CHECK:STDOUT: %self.patt: %C2 = binding_pattern self
  2411. // CHECK:STDOUT: %self.param_patt: %C2 = value_param_pattern %self.patt, call_param0
  2412. // CHECK:STDOUT: %z.patt: %C2 = binding_pattern z
  2413. // CHECK:STDOUT: %z.param_patt: %C2 = value_param_pattern %z.patt, call_param1
  2414. // CHECK:STDOUT: %return.patt: %C2 = return_slot_pattern
  2415. // CHECK:STDOUT: %return.param_patt: %C2 = out_param_pattern %return.patt, call_param2
  2416. // CHECK:STDOUT: } {
  2417. // CHECK:STDOUT: %C2.ref.loc32_30: type = name_ref C2, file.%C2.decl [concrete = constants.%C2]
  2418. // CHECK:STDOUT: %self.param: %C2 = value_param call_param0
  2419. // CHECK:STDOUT: %Self.ref: type = name_ref Self, @impl.3df.%C2.ref.loc31_6 [concrete = constants.%C2]
  2420. // CHECK:STDOUT: %self: %C2 = bind_name self, %self.param
  2421. // CHECK:STDOUT: %z.param: %C2 = value_param call_param1
  2422. // CHECK:STDOUT: %C2.ref.loc32_23: type = name_ref C2, file.%C2.decl [concrete = constants.%C2]
  2423. // CHECK:STDOUT: %z: %C2 = bind_name z, %z.param
  2424. // CHECK:STDOUT: %return.param: ref %C2 = out_param call_param2
  2425. // CHECK:STDOUT: %return: ref %C2 = return_slot %return.param
  2426. // CHECK:STDOUT: }
  2427. // CHECK:STDOUT:
  2428. // CHECK:STDOUT: !members:
  2429. // CHECK:STDOUT: .C2 = <poisoned>
  2430. // CHECK:STDOUT: .F = %F.decl
  2431. // CHECK:STDOUT: witness = file.%impl_witness.loc31
  2432. // CHECK:STDOUT: }
  2433. // CHECK:STDOUT:
  2434. // CHECK:STDOUT: class @C2 {
  2435. // CHECK:STDOUT: %.loc28_10: %empty_struct_type = struct_literal ()
  2436. // CHECK:STDOUT: %.loc28_11: type = converted %.loc28_10, constants.%empty_struct_type [concrete = constants.%empty_struct_type]
  2437. // CHECK:STDOUT: adapt_decl %.loc28_11 [concrete]
  2438. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type]
  2439. // CHECK:STDOUT: complete_type_witness = %complete_type
  2440. // CHECK:STDOUT:
  2441. // CHECK:STDOUT: !members:
  2442. // CHECK:STDOUT: .Self = constants.%C2
  2443. // CHECK:STDOUT: }
  2444. // CHECK:STDOUT:
  2445. // CHECK:STDOUT: generic fn @F.1(@J2.%Self: %J2.type) {
  2446. // CHECK:STDOUT: %Self: %J2.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self)]
  2447. // CHECK:STDOUT: %Self.as_type.loc19_14.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc19_14.1 (constants.%Self.as_type)]
  2448. // CHECK:STDOUT:
  2449. // CHECK:STDOUT: fn[%self.param_patt: @F.1.%Self.as_type.loc19_14.1 (%Self.as_type)](%z.param_patt: <error>) -> <error>;
  2450. // CHECK:STDOUT: }
  2451. // CHECK:STDOUT:
  2452. // CHECK:STDOUT: fn @F.2[%self.param_patt: %empty_tuple.type](%z.param_patt: %empty_struct_type) -> %empty_struct_type {
  2453. // CHECK:STDOUT: !entry:
  2454. // CHECK:STDOUT: %z.ref: %empty_struct_type = name_ref z, %z
  2455. // CHECK:STDOUT: return %z.ref
  2456. // CHECK:STDOUT: }
  2457. // CHECK:STDOUT:
  2458. // CHECK:STDOUT: fn @F.3[%self.param_patt: %C2](%z.param_patt: %C2) -> %C2 {
  2459. // CHECK:STDOUT: !entry:
  2460. // CHECK:STDOUT: %self.ref: %C2 = name_ref self, %self
  2461. // CHECK:STDOUT: return %self.ref
  2462. // CHECK:STDOUT: }
  2463. // CHECK:STDOUT:
  2464. // CHECK:STDOUT: specific @U2(constants.%Self) {}
  2465. // CHECK:STDOUT:
  2466. // CHECK:STDOUT: specific @F.1(constants.%Self) {
  2467. // CHECK:STDOUT: %Self => constants.%Self
  2468. // CHECK:STDOUT: %Self.as_type.loc19_14.1 => constants.%Self.as_type
  2469. // CHECK:STDOUT: }
  2470. // CHECK:STDOUT:
  2471. // CHECK:STDOUT: specific @U2(constants.%J2.facet.afd) {}
  2472. // CHECK:STDOUT:
  2473. // CHECK:STDOUT: specific @F.1(constants.%J2.facet.fdd) {
  2474. // CHECK:STDOUT: %Self => constants.%J2.facet.fdd
  2475. // CHECK:STDOUT: %Self.as_type.loc19_14.1 => constants.%empty_tuple.type
  2476. // CHECK:STDOUT: }
  2477. // CHECK:STDOUT:
  2478. // CHECK:STDOUT: specific @F.1(constants.%J2.facet.f36) {
  2479. // CHECK:STDOUT: %Self => constants.%J2.facet.f36
  2480. // CHECK:STDOUT: %Self.as_type.loc19_14.1 => constants.%C2
  2481. // CHECK:STDOUT: }
  2482. // CHECK:STDOUT:
  2483. // CHECK:STDOUT: --- fail_associated_type_in_signature_mismatch.carbon
  2484. // CHECK:STDOUT:
  2485. // CHECK:STDOUT: constants {
  2486. // CHECK:STDOUT: %K.type: type = facet_type <@K> [concrete]
  2487. // CHECK:STDOUT: %Self: %K.type = bind_symbolic_name Self, 0 [symbolic]
  2488. // CHECK:STDOUT: %K.assoc_type: type = assoc_entity_type @K [concrete]
  2489. // CHECK:STDOUT: %assoc0: %K.assoc_type = assoc_entity element0, @K.%V [concrete]
  2490. // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self [symbolic]
  2491. // CHECK:STDOUT: %Self.as_wit.iface0: <witness> = facet_access_witness %Self, element0 [symbolic]
  2492. // CHECK:STDOUT: %K.facet.3e1: %K.type = facet_value %Self.as_type, (%Self.as_wit.iface0) [symbolic]
  2493. // CHECK:STDOUT: %impl.elem0.c2f: type = impl_witness_access %Self.as_wit.iface0, element0 [symbolic]
  2494. // CHECK:STDOUT: %F.type.cf5: type = fn_type @F.1 [concrete]
  2495. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  2496. // CHECK:STDOUT: %F.06b: %F.type.cf5 = struct_value () [concrete]
  2497. // CHECK:STDOUT: %assoc1: %K.assoc_type = assoc_entity element1, @K.%F.decl [concrete]
  2498. // CHECK:STDOUT: %.Self: %K.type = bind_symbolic_name .Self [symbolic_self]
  2499. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self [symbolic_self]
  2500. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self, element0 [symbolic_self]
  2501. // CHECK:STDOUT: %K.facet.c18: %K.type = facet_value %.Self.as_type, (%.Self.as_wit.iface0) [symbolic_self]
  2502. // CHECK:STDOUT: %impl.elem0.e09: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self]
  2503. // CHECK:STDOUT: %struct_type.a: type = struct_type {.a: %empty_tuple.type} [concrete]
  2504. // CHECK:STDOUT: %K_where.type: type = facet_type <@K where %impl.elem0.e09 = %struct_type.a> [concrete]
  2505. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (%struct_type.a, <error>) [concrete]
  2506. // CHECK:STDOUT: %struct_type.x: type = struct_type {.x: %empty_tuple.type} [concrete]
  2507. // CHECK:STDOUT: %F.type.894: type = fn_type @F.2 [concrete]
  2508. // CHECK:STDOUT: %F.62c: %F.type.894 = struct_value () [concrete]
  2509. // CHECK:STDOUT: %K.facet.28f: %K.type = facet_value %empty_tuple.type, (%impl_witness) [concrete]
  2510. // CHECK:STDOUT: }
  2511. // CHECK:STDOUT:
  2512. // CHECK:STDOUT: imports {
  2513. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  2514. // CHECK:STDOUT: import Core//prelude
  2515. // CHECK:STDOUT: import Core//prelude/...
  2516. // CHECK:STDOUT: }
  2517. // CHECK:STDOUT: }
  2518. // CHECK:STDOUT:
  2519. // CHECK:STDOUT: file {
  2520. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  2521. // CHECK:STDOUT: .Core = imports.%Core
  2522. // CHECK:STDOUT: .K = %K.decl
  2523. // CHECK:STDOUT: }
  2524. // CHECK:STDOUT: %Core.import = import Core
  2525. // CHECK:STDOUT: %K.decl: type = interface_decl @K [concrete = constants.%K.type] {} {}
  2526. // CHECK:STDOUT: impl_decl @impl [concrete] {} {
  2527. // CHECK:STDOUT: %.loc8_7.1: %empty_tuple.type = tuple_literal ()
  2528. // CHECK:STDOUT: %.loc8_7.2: type = converted %.loc8_7.1, constants.%empty_tuple.type [concrete = constants.%empty_tuple.type]
  2529. // CHECK:STDOUT: %K.ref: type = name_ref K, file.%K.decl [concrete = constants.%K.type]
  2530. // CHECK:STDOUT: %.Self: %K.type = bind_symbolic_name .Self [symbolic_self = constants.%.Self]
  2531. // CHECK:STDOUT: %.Self.ref: %K.type = name_ref .Self, %.Self [symbolic_self = constants.%.Self]
  2532. // CHECK:STDOUT: %V.ref: %K.assoc_type = name_ref V, @V.%assoc0 [concrete = constants.%assoc0]
  2533. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self.ref [symbolic_self = constants.%.Self.as_type]
  2534. // CHECK:STDOUT: %.loc8_20: type = converted %.Self.ref, %.Self.as_type [symbolic_self = constants.%.Self.as_type]
  2535. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self.ref, element0 [symbolic_self = constants.%.Self.as_wit.iface0]
  2536. // CHECK:STDOUT: %impl.elem0: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self = constants.%impl.elem0.e09]
  2537. // CHECK:STDOUT: %.loc8_31.1: %empty_tuple.type = tuple_literal ()
  2538. // CHECK:STDOUT: %.loc8_31.2: type = converted %.loc8_31.1, constants.%empty_tuple.type [concrete = constants.%empty_tuple.type]
  2539. // CHECK:STDOUT: %struct_type.a: type = struct_type {.a: %empty_tuple.type} [concrete = constants.%struct_type.a]
  2540. // CHECK:STDOUT: %.loc8_14: type = where_expr %.Self [concrete = constants.%K_where.type] {
  2541. // CHECK:STDOUT: requirement_rewrite %impl.elem0, %struct_type.a
  2542. // CHECK:STDOUT: }
  2543. // CHECK:STDOUT: }
  2544. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (constants.%struct_type.a, <error>) [concrete = constants.%impl_witness]
  2545. // CHECK:STDOUT: }
  2546. // CHECK:STDOUT:
  2547. // CHECK:STDOUT: interface @K {
  2548. // CHECK:STDOUT: %Self: %K.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
  2549. // CHECK:STDOUT: %V: type = assoc_const_decl @V [concrete] {
  2550. // CHECK:STDOUT: %assoc0: %K.assoc_type = assoc_entity element0, @K.%V [concrete = constants.%assoc0]
  2551. // CHECK:STDOUT: }
  2552. // CHECK:STDOUT: %F.decl: %F.type.cf5 = fn_decl @F.1 [concrete = constants.%F.06b] {
  2553. // CHECK:STDOUT: %self.patt: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type) = binding_pattern self
  2554. // CHECK:STDOUT: %self.param_patt: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type) = value_param_pattern %self.patt, call_param0
  2555. // CHECK:STDOUT: %v.patt: @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.c2f) = binding_pattern v
  2556. // CHECK:STDOUT: %v.param_patt: @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.c2f) = value_param_pattern %v.patt, call_param1
  2557. // CHECK:STDOUT: %return.patt: @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.c2f) = return_slot_pattern
  2558. // CHECK:STDOUT: %return.param_patt: @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.c2f) = out_param_pattern %return.patt, call_param2
  2559. // CHECK:STDOUT: } {
  2560. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_29: <witness> = facet_access_witness @K.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_23.1 (constants.%Self.as_wit.iface0)]
  2561. // CHECK:STDOUT: %impl.elem0.loc5_29: type = impl_witness_access %Self.as_wit.iface0.loc5_29, element0 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.c2f)]
  2562. // CHECK:STDOUT: %V.ref.loc5_29: type = name_ref V, %impl.elem0.loc5_29 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.c2f)]
  2563. // CHECK:STDOUT: %self.param: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type) = value_param call_param0
  2564. // CHECK:STDOUT: %.loc5_14.1: type = splice_block %.loc5_14.2 [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type)] {
  2565. // CHECK:STDOUT: %Self.ref: %K.type = name_ref Self, @K.%Self [symbolic = %Self (constants.%Self)]
  2566. // CHECK:STDOUT: %Self.as_type.loc5_14.2: type = facet_access_type %Self.ref [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type)]
  2567. // CHECK:STDOUT: %.loc5_14.2: type = converted %Self.ref, %Self.as_type.loc5_14.2 [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type)]
  2568. // CHECK:STDOUT: }
  2569. // CHECK:STDOUT: %self: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type) = bind_name self, %self.param
  2570. // CHECK:STDOUT: %v.param: @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.c2f) = value_param call_param1
  2571. // CHECK:STDOUT: %.loc5_23: type = splice_block %V.ref.loc5_23 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.c2f)] {
  2572. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_23.2: <witness> = facet_access_witness @K.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_23.1 (constants.%Self.as_wit.iface0)]
  2573. // CHECK:STDOUT: %impl.elem0.loc5_23.2: type = impl_witness_access %Self.as_wit.iface0.loc5_23.2, element0 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.c2f)]
  2574. // CHECK:STDOUT: %V.ref.loc5_23: type = name_ref V, %impl.elem0.loc5_23.2 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.c2f)]
  2575. // CHECK:STDOUT: }
  2576. // CHECK:STDOUT: %v: @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.c2f) = bind_name v, %v.param
  2577. // CHECK:STDOUT: %return.param: ref @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.c2f) = out_param call_param2
  2578. // CHECK:STDOUT: %return: ref @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.c2f) = return_slot %return.param
  2579. // CHECK:STDOUT: }
  2580. // CHECK:STDOUT: %assoc1: %K.assoc_type = assoc_entity element1, %F.decl [concrete = constants.%assoc1]
  2581. // CHECK:STDOUT:
  2582. // CHECK:STDOUT: !members:
  2583. // CHECK:STDOUT: .Self = %Self
  2584. // CHECK:STDOUT: .V = @V.%assoc0
  2585. // CHECK:STDOUT: .F = %assoc1
  2586. // CHECK:STDOUT: witness = (%V, %F.decl)
  2587. // CHECK:STDOUT: }
  2588. // CHECK:STDOUT:
  2589. // CHECK:STDOUT: generic assoc_const @V(@K.%Self: %K.type) {
  2590. // CHECK:STDOUT: assoc_const V:! type;
  2591. // CHECK:STDOUT: }
  2592. // CHECK:STDOUT:
  2593. // CHECK:STDOUT: impl @impl: %.loc8_7.2 as %.loc8_14 {
  2594. // CHECK:STDOUT: %F.decl: %F.type.894 = fn_decl @F.2 [concrete = constants.%F.62c] {
  2595. // CHECK:STDOUT: %self.patt: %empty_tuple.type = binding_pattern self
  2596. // CHECK:STDOUT: %self.param_patt: %empty_tuple.type = value_param_pattern %self.patt, call_param0
  2597. // CHECK:STDOUT: %v.patt: %struct_type.x = binding_pattern v
  2598. // CHECK:STDOUT: %v.param_patt: %struct_type.x = value_param_pattern %v.patt, call_param1
  2599. // CHECK:STDOUT: %return.patt: %struct_type.x = return_slot_pattern
  2600. // CHECK:STDOUT: %return.param_patt: %struct_type.x = out_param_pattern %return.patt, call_param2
  2601. // CHECK:STDOUT: } {
  2602. // CHECK:STDOUT: %.loc16_42.1: %empty_tuple.type = tuple_literal ()
  2603. // CHECK:STDOUT: %.loc16_42.2: type = converted %.loc16_42.1, constants.%empty_tuple.type [concrete = constants.%empty_tuple.type]
  2604. // CHECK:STDOUT: %struct_type.x.loc16_43: type = struct_type {.x: %empty_tuple.type} [concrete = constants.%struct_type.x]
  2605. // CHECK:STDOUT: %self.param: %empty_tuple.type = value_param call_param0
  2606. // CHECK:STDOUT: %Self.ref: type = name_ref Self, @impl.%.loc8_7.2 [concrete = constants.%empty_tuple.type]
  2607. // CHECK:STDOUT: %self: %empty_tuple.type = bind_name self, %self.param
  2608. // CHECK:STDOUT: %v.param: %struct_type.x = value_param call_param1
  2609. // CHECK:STDOUT: %.loc16_30: type = splice_block %struct_type.x.loc16_30 [concrete = constants.%struct_type.x] {
  2610. // CHECK:STDOUT: %.loc16_29.1: %empty_tuple.type = tuple_literal ()
  2611. // CHECK:STDOUT: %.loc16_29.2: type = converted %.loc16_29.1, constants.%empty_tuple.type [concrete = constants.%empty_tuple.type]
  2612. // CHECK:STDOUT: %struct_type.x.loc16_30: type = struct_type {.x: %empty_tuple.type} [concrete = constants.%struct_type.x]
  2613. // CHECK:STDOUT: }
  2614. // CHECK:STDOUT: %v: %struct_type.x = bind_name v, %v.param
  2615. // CHECK:STDOUT: %return.param: ref %struct_type.x = out_param call_param2
  2616. // CHECK:STDOUT: %return: ref %struct_type.x = return_slot %return.param
  2617. // CHECK:STDOUT: }
  2618. // CHECK:STDOUT:
  2619. // CHECK:STDOUT: !members:
  2620. // CHECK:STDOUT: .F = %F.decl
  2621. // CHECK:STDOUT: witness = file.%impl_witness
  2622. // CHECK:STDOUT: }
  2623. // CHECK:STDOUT:
  2624. // CHECK:STDOUT: generic fn @F.1(@K.%Self: %K.type) {
  2625. // CHECK:STDOUT: %Self: %K.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self)]
  2626. // CHECK:STDOUT: %Self.as_type.loc5_14.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type)]
  2627. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_23.1: <witness> = facet_access_witness %Self, element0 [symbolic = %Self.as_wit.iface0.loc5_23.1 (constants.%Self.as_wit.iface0)]
  2628. // CHECK:STDOUT: %impl.elem0.loc5_23.1: type = impl_witness_access %Self.as_wit.iface0.loc5_23.1, element0 [symbolic = %impl.elem0.loc5_23.1 (constants.%impl.elem0.c2f)]
  2629. // CHECK:STDOUT:
  2630. // CHECK:STDOUT: fn[%self.param_patt: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type)](%v.param_patt: @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.c2f)) -> @F.1.%impl.elem0.loc5_23.1 (%impl.elem0.c2f);
  2631. // CHECK:STDOUT: }
  2632. // CHECK:STDOUT:
  2633. // CHECK:STDOUT: fn @F.2[%self.param_patt: %empty_tuple.type](%v.param_patt: %struct_type.x) -> %struct_type.x {
  2634. // CHECK:STDOUT: !entry:
  2635. // CHECK:STDOUT: %v.ref: %struct_type.x = name_ref v, %v
  2636. // CHECK:STDOUT: return %v.ref
  2637. // CHECK:STDOUT: }
  2638. // CHECK:STDOUT:
  2639. // CHECK:STDOUT: specific @V(constants.%Self) {}
  2640. // CHECK:STDOUT:
  2641. // CHECK:STDOUT: specific @V(constants.%K.facet.3e1) {}
  2642. // CHECK:STDOUT:
  2643. // CHECK:STDOUT: specific @F.1(constants.%Self) {
  2644. // CHECK:STDOUT: %Self => constants.%Self
  2645. // CHECK:STDOUT: %Self.as_type.loc5_14.1 => constants.%Self.as_type
  2646. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_23.1 => constants.%Self.as_wit.iface0
  2647. // CHECK:STDOUT: %impl.elem0.loc5_23.1 => constants.%impl.elem0.c2f
  2648. // CHECK:STDOUT: }
  2649. // CHECK:STDOUT:
  2650. // CHECK:STDOUT: specific @V(constants.%K.facet.c18) {}
  2651. // CHECK:STDOUT:
  2652. // CHECK:STDOUT: specific @F.1(constants.%K.facet.28f) {
  2653. // CHECK:STDOUT: %Self => constants.%K.facet.28f
  2654. // CHECK:STDOUT: %Self.as_type.loc5_14.1 => constants.%empty_tuple.type
  2655. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_23.1 => constants.%impl_witness
  2656. // CHECK:STDOUT: %impl.elem0.loc5_23.1 => constants.%struct_type.a
  2657. // CHECK:STDOUT: }
  2658. // CHECK:STDOUT:
  2659. // CHECK:STDOUT: --- use_non-type_in_function.carbon
  2660. // CHECK:STDOUT:
  2661. // CHECK:STDOUT: constants {
  2662. // CHECK:STDOUT: %M.type: type = facet_type <@M> [concrete]
  2663. // CHECK:STDOUT: %Self: %M.type = bind_symbolic_name Self, 0 [symbolic]
  2664. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  2665. // CHECK:STDOUT: %struct_type.b.347: type = struct_type {.b: %empty_struct_type} [concrete]
  2666. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  2667. // CHECK:STDOUT: %M.assoc_type: type = assoc_entity_type @M [concrete]
  2668. // CHECK:STDOUT: %assoc0: %M.assoc_type = assoc_entity element0, @M.%Z [concrete]
  2669. // CHECK:STDOUT: %G.type.020: type = fn_type @G.1 [concrete]
  2670. // CHECK:STDOUT: %G.91c: %G.type.020 = struct_value () [concrete]
  2671. // CHECK:STDOUT: %assoc1: %M.assoc_type = assoc_entity element1, @M.%G.decl [concrete]
  2672. // CHECK:STDOUT: %.Self: %M.type = bind_symbolic_name .Self [symbolic_self]
  2673. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self [symbolic_self]
  2674. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self, element0 [symbolic_self]
  2675. // CHECK:STDOUT: %M.facet.407: %M.type = facet_value %.Self.as_type, (%.Self.as_wit.iface0) [symbolic_self]
  2676. // CHECK:STDOUT: %impl.elem0: %struct_type.b.347 = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self]
  2677. // CHECK:STDOUT: %empty_struct: %empty_struct_type = struct_value () [concrete]
  2678. // CHECK:STDOUT: %struct: %struct_type.b.347 = struct_value (%empty_struct) [concrete]
  2679. // CHECK:STDOUT: %M_where.type: type = facet_type <@M where %impl.elem0 = %struct> [concrete]
  2680. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (%struct, @impl.%G.decl) [concrete]
  2681. // CHECK:STDOUT: %G.type.bf5: type = fn_type @G.2 [concrete]
  2682. // CHECK:STDOUT: %G.44e: %G.type.bf5 = struct_value () [concrete]
  2683. // CHECK:STDOUT: %M.facet.993: %M.type = facet_value %empty_tuple.type, (%impl_witness) [concrete]
  2684. // CHECK:STDOUT: }
  2685. // CHECK:STDOUT:
  2686. // CHECK:STDOUT: imports {
  2687. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  2688. // CHECK:STDOUT: import Core//prelude
  2689. // CHECK:STDOUT: import Core//prelude/...
  2690. // CHECK:STDOUT: }
  2691. // CHECK:STDOUT: }
  2692. // CHECK:STDOUT:
  2693. // CHECK:STDOUT: file {
  2694. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  2695. // CHECK:STDOUT: .Core = imports.%Core
  2696. // CHECK:STDOUT: .M = %M.decl
  2697. // CHECK:STDOUT: }
  2698. // CHECK:STDOUT: %Core.import = import Core
  2699. // CHECK:STDOUT: %M.decl: type = interface_decl @M [concrete = constants.%M.type] {} {}
  2700. // CHECK:STDOUT: impl_decl @impl [concrete] {} {
  2701. // CHECK:STDOUT: %.loc8_7.1: %empty_tuple.type = tuple_literal ()
  2702. // CHECK:STDOUT: %.loc8_7.2: type = converted %.loc8_7.1, constants.%empty_tuple.type [concrete = constants.%empty_tuple.type]
  2703. // CHECK:STDOUT: %M.ref: type = name_ref M, file.%M.decl [concrete = constants.%M.type]
  2704. // CHECK:STDOUT: %.Self: %M.type = bind_symbolic_name .Self [symbolic_self = constants.%.Self]
  2705. // CHECK:STDOUT: %.Self.ref: %M.type = name_ref .Self, %.Self [symbolic_self = constants.%.Self]
  2706. // CHECK:STDOUT: %Z.ref: %M.assoc_type = name_ref Z, @Z.%assoc0 [concrete = constants.%assoc0]
  2707. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self.ref [symbolic_self = constants.%.Self.as_type]
  2708. // CHECK:STDOUT: %.loc8_20: type = converted %.Self.ref, %.Self.as_type [symbolic_self = constants.%.Self.as_type]
  2709. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self.ref, element0 [symbolic_self = constants.%.Self.as_wit.iface0]
  2710. // CHECK:STDOUT: %impl.elem0: %struct_type.b.347 = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self = constants.%impl.elem0]
  2711. // CHECK:STDOUT: %.loc8_32: %empty_struct_type = struct_literal ()
  2712. // CHECK:STDOUT: %.loc8_33.1: %struct_type.b.347 = struct_literal (%.loc8_32)
  2713. // CHECK:STDOUT: %empty_struct: %empty_struct_type = struct_value () [concrete = constants.%empty_struct]
  2714. // CHECK:STDOUT: %.loc8_33.2: %empty_struct_type = converted %.loc8_32, %empty_struct [concrete = constants.%empty_struct]
  2715. // CHECK:STDOUT: %struct: %struct_type.b.347 = struct_value (%.loc8_33.2) [concrete = constants.%struct]
  2716. // CHECK:STDOUT: %.loc8_33.3: %struct_type.b.347 = converted %.loc8_33.1, %struct [concrete = constants.%struct]
  2717. // CHECK:STDOUT: %.loc8_14: type = where_expr %.Self [concrete = constants.%M_where.type] {
  2718. // CHECK:STDOUT: requirement_rewrite %impl.elem0, %.loc8_33.3
  2719. // CHECK:STDOUT: }
  2720. // CHECK:STDOUT: }
  2721. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (constants.%struct, @impl.%G.decl) [concrete = constants.%impl_witness]
  2722. // CHECK:STDOUT: }
  2723. // CHECK:STDOUT:
  2724. // CHECK:STDOUT: interface @M {
  2725. // CHECK:STDOUT: %Self: %M.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
  2726. // CHECK:STDOUT: %Z: %struct_type.b.347 = assoc_const_decl @Z [concrete] {
  2727. // CHECK:STDOUT: %assoc0: %M.assoc_type = assoc_entity element0, @M.%Z [concrete = constants.%assoc0]
  2728. // CHECK:STDOUT: }
  2729. // CHECK:STDOUT: %G.decl: %G.type.020 = fn_decl @G.1 [concrete = constants.%G.91c] {
  2730. // CHECK:STDOUT: %return.patt: %empty_struct_type = return_slot_pattern
  2731. // CHECK:STDOUT: %return.param_patt: %empty_struct_type = out_param_pattern %return.patt, call_param0
  2732. // CHECK:STDOUT: } {
  2733. // CHECK:STDOUT: %.loc5_14.1: %empty_struct_type = struct_literal ()
  2734. // CHECK:STDOUT: %.loc5_14.2: type = converted %.loc5_14.1, constants.%empty_struct_type [concrete = constants.%empty_struct_type]
  2735. // CHECK:STDOUT: %return.param: ref %empty_struct_type = out_param call_param0
  2736. // CHECK:STDOUT: %return: ref %empty_struct_type = return_slot %return.param
  2737. // CHECK:STDOUT: }
  2738. // CHECK:STDOUT: %assoc1: %M.assoc_type = assoc_entity element1, %G.decl [concrete = constants.%assoc1]
  2739. // CHECK:STDOUT:
  2740. // CHECK:STDOUT: !members:
  2741. // CHECK:STDOUT: .Self = %Self
  2742. // CHECK:STDOUT: .Z = @Z.%assoc0
  2743. // CHECK:STDOUT: .G = %assoc1
  2744. // CHECK:STDOUT: witness = (%Z, %G.decl)
  2745. // CHECK:STDOUT: }
  2746. // CHECK:STDOUT:
  2747. // CHECK:STDOUT: generic assoc_const @Z(@M.%Self: %M.type) {
  2748. // CHECK:STDOUT: assoc_const Z:! %struct_type.b.347;
  2749. // CHECK:STDOUT: }
  2750. // CHECK:STDOUT:
  2751. // CHECK:STDOUT: impl @impl: %.loc8_7.2 as %.loc8_14 {
  2752. // CHECK:STDOUT: %G.decl: %G.type.bf5 = fn_decl @G.2 [concrete = constants.%G.44e] {
  2753. // CHECK:STDOUT: %return.patt: %empty_struct_type = return_slot_pattern
  2754. // CHECK:STDOUT: %return.param_patt: %empty_struct_type = out_param_pattern %return.patt, call_param0
  2755. // CHECK:STDOUT: } {
  2756. // CHECK:STDOUT: %.loc9_14.1: %empty_struct_type = struct_literal ()
  2757. // CHECK:STDOUT: %.loc9_14.2: type = converted %.loc9_14.1, constants.%empty_struct_type [concrete = constants.%empty_struct_type]
  2758. // CHECK:STDOUT: %return.param: ref %empty_struct_type = out_param call_param0
  2759. // CHECK:STDOUT: %return: ref %empty_struct_type = return_slot %return.param
  2760. // CHECK:STDOUT: }
  2761. // CHECK:STDOUT:
  2762. // CHECK:STDOUT: !members:
  2763. // CHECK:STDOUT: .G = %G.decl
  2764. // CHECK:STDOUT: .M = <poisoned>
  2765. // CHECK:STDOUT: witness = file.%impl_witness
  2766. // CHECK:STDOUT: }
  2767. // CHECK:STDOUT:
  2768. // CHECK:STDOUT: generic fn @G.1(@M.%Self: %M.type) {
  2769. // CHECK:STDOUT: fn() -> %empty_struct_type;
  2770. // CHECK:STDOUT: }
  2771. // CHECK:STDOUT:
  2772. // CHECK:STDOUT: fn @G.2() -> %empty_struct_type {
  2773. // CHECK:STDOUT: !entry:
  2774. // CHECK:STDOUT: %Self.ref: type = name_ref Self, @impl.%.loc8_7.2 [concrete = constants.%empty_tuple.type]
  2775. // CHECK:STDOUT: %M.ref: type = name_ref M, file.%M.decl [concrete = constants.%M.type]
  2776. // CHECK:STDOUT: %M.facet: %M.type = facet_value constants.%empty_tuple.type, (constants.%impl_witness) [concrete = constants.%M.facet.993]
  2777. // CHECK:STDOUT: %.loc10_18: %M.type = converted %Self.ref, %M.facet [concrete = constants.%M.facet.993]
  2778. // CHECK:STDOUT: %Z.ref: %M.assoc_type = name_ref Z, @Z.%assoc0 [concrete = constants.%assoc0]
  2779. // CHECK:STDOUT: %as_type: type = facet_access_type %.loc10_18 [concrete = constants.%empty_tuple.type]
  2780. // CHECK:STDOUT: %.loc10_23: type = converted %.loc10_18, %as_type [concrete = constants.%empty_tuple.type]
  2781. // CHECK:STDOUT: %as_wit.iface0: <witness> = facet_access_witness %.loc10_18, element0 [concrete = constants.%impl_witness]
  2782. // CHECK:STDOUT: %impl.elem0: %struct_type.b.347 = impl_witness_access %as_wit.iface0, element0 [concrete = constants.%struct]
  2783. // CHECK:STDOUT: %.loc10_25: %empty_struct_type = struct_access %impl.elem0, element0 [concrete = constants.%empty_struct]
  2784. // CHECK:STDOUT: return %.loc10_25
  2785. // CHECK:STDOUT: }
  2786. // CHECK:STDOUT:
  2787. // CHECK:STDOUT: specific @Z(constants.%Self) {}
  2788. // CHECK:STDOUT:
  2789. // CHECK:STDOUT: specific @G.1(constants.%Self) {}
  2790. // CHECK:STDOUT:
  2791. // CHECK:STDOUT: specific @Z(constants.%M.facet.407) {}
  2792. // CHECK:STDOUT:
  2793. // CHECK:STDOUT: specific @G.1(constants.%M.facet.993) {}
  2794. // CHECK:STDOUT:
  2795. // CHECK:STDOUT: specific @Z(constants.%M.facet.993) {}
  2796. // CHECK:STDOUT:
  2797. // CHECK:STDOUT: --- self_as_uses_correct_rewrite_constraint.carbon
  2798. // CHECK:STDOUT:
  2799. // CHECK:STDOUT: constants {
  2800. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic]
  2801. // CHECK:STDOUT: %T.patt: type = symbolic_binding_pattern T, 0 [symbolic]
  2802. // CHECK:STDOUT: %C.type: type = generic_class_type @C [concrete]
  2803. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  2804. // CHECK:STDOUT: %C.generic: %C.type = struct_value () [concrete]
  2805. // CHECK:STDOUT: %C.f2e: type = class_type @C, @C(%T) [symbolic]
  2806. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  2807. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete]
  2808. // CHECK:STDOUT: %M.type: type = facet_type <@M> [concrete]
  2809. // CHECK:STDOUT: %Self: %M.type = bind_symbolic_name Self, 0 [symbolic]
  2810. // CHECK:STDOUT: %struct_type.b.86f: type = struct_type {.b: type} [concrete]
  2811. // CHECK:STDOUT: %M.assoc_type: type = assoc_entity_type @M [concrete]
  2812. // CHECK:STDOUT: %assoc0: %M.assoc_type = assoc_entity element0, @M.%Z [concrete]
  2813. // CHECK:STDOUT: %G.type.020: type = fn_type @G.1 [concrete]
  2814. // CHECK:STDOUT: %G.91c: %G.type.020 = struct_value () [concrete]
  2815. // CHECK:STDOUT: %assoc1: %M.assoc_type = assoc_entity element1, @M.%G.decl [concrete]
  2816. // CHECK:STDOUT: %C.7a7: type = class_type @C, @C(%empty_struct_type) [concrete]
  2817. // CHECK:STDOUT: %.Self: %M.type = bind_symbolic_name .Self [symbolic_self]
  2818. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self [symbolic_self]
  2819. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self, element0 [symbolic_self]
  2820. // CHECK:STDOUT: %M.facet.407: %M.type = facet_value %.Self.as_type, (%.Self.as_wit.iface0) [symbolic_self]
  2821. // CHECK:STDOUT: %impl.elem0: %struct_type.b.86f = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self]
  2822. // CHECK:STDOUT: %struct_type.b.347: type = struct_type {.b: %empty_struct_type} [concrete]
  2823. // CHECK:STDOUT: %struct.0f3: %struct_type.b.86f = struct_value (%empty_struct_type) [concrete]
  2824. // CHECK:STDOUT: %M_where.type.132: type = facet_type <@M where %impl.elem0 = %struct.0f3> [concrete]
  2825. // CHECK:STDOUT: %impl_witness.ae0: <witness> = impl_witness (%struct.0f3, @impl.9c5.%G.decl) [concrete]
  2826. // CHECK:STDOUT: %G.type.160: type = fn_type @G.2 [concrete]
  2827. // CHECK:STDOUT: %G.fc4: %G.type.160 = struct_value () [concrete]
  2828. // CHECK:STDOUT: %M.facet.508: %M.type = facet_value %C.7a7, (%impl_witness.ae0) [concrete]
  2829. // CHECK:STDOUT: %C.3a0: type = class_type @C, @C(%empty_tuple.type) [concrete]
  2830. // CHECK:STDOUT: %struct_type.b.161: type = struct_type {.b: %empty_tuple.type} [concrete]
  2831. // CHECK:STDOUT: %struct.c94: %struct_type.b.86f = struct_value (%empty_tuple.type) [concrete]
  2832. // CHECK:STDOUT: %M_where.type.363: type = facet_type <@M where %impl.elem0 = %struct.c94> [concrete]
  2833. // CHECK:STDOUT: %impl_witness.6b9: <witness> = impl_witness (%struct.c94, @impl.f46.%G.decl) [concrete]
  2834. // CHECK:STDOUT: %G.type.18e: type = fn_type @G.3 [concrete]
  2835. // CHECK:STDOUT: %G.066: %G.type.18e = struct_value () [concrete]
  2836. // CHECK:STDOUT: %M.facet.a97: %M.type = facet_value %C.3a0, (%impl_witness.6b9) [concrete]
  2837. // CHECK:STDOUT: }
  2838. // CHECK:STDOUT:
  2839. // CHECK:STDOUT: imports {
  2840. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  2841. // CHECK:STDOUT: import Core//prelude
  2842. // CHECK:STDOUT: import Core//prelude/...
  2843. // CHECK:STDOUT: }
  2844. // CHECK:STDOUT: }
  2845. // CHECK:STDOUT:
  2846. // CHECK:STDOUT: file {
  2847. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  2848. // CHECK:STDOUT: .Core = imports.%Core
  2849. // CHECK:STDOUT: .C = %C.decl
  2850. // CHECK:STDOUT: .M = %M.decl
  2851. // CHECK:STDOUT: }
  2852. // CHECK:STDOUT: %Core.import = import Core
  2853. // CHECK:STDOUT: %C.decl: %C.type = class_decl @C [concrete = constants.%C.generic] {
  2854. // CHECK:STDOUT: %T.patt.loc3_9.1: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc3_9.2 (constants.%T.patt)]
  2855. // CHECK:STDOUT: } {
  2856. // CHECK:STDOUT: %T.loc3_9.1: type = bind_symbolic_name T, 0 [symbolic = %T.loc3_9.2 (constants.%T)]
  2857. // CHECK:STDOUT: }
  2858. // CHECK:STDOUT: %M.decl: type = interface_decl @M [concrete = constants.%M.type] {} {}
  2859. // CHECK:STDOUT: impl_decl @impl.9c5 [concrete] {} {
  2860. // CHECK:STDOUT: %C.ref: %C.type = name_ref C, file.%C.decl [concrete = constants.%C.generic]
  2861. // CHECK:STDOUT: %.loc10_9: %empty_struct_type = struct_literal ()
  2862. // CHECK:STDOUT: %.loc10_10: type = converted %.loc10_9, constants.%empty_struct_type [concrete = constants.%empty_struct_type]
  2863. // CHECK:STDOUT: %C: type = class_type @C, @C(constants.%empty_struct_type) [concrete = constants.%C.7a7]
  2864. // CHECK:STDOUT: %M.ref: type = name_ref M, file.%M.decl [concrete = constants.%M.type]
  2865. // CHECK:STDOUT: %.Self: %M.type = bind_symbolic_name .Self [symbolic_self = constants.%.Self]
  2866. // CHECK:STDOUT: %.Self.ref: %M.type = name_ref .Self, %.Self [symbolic_self = constants.%.Self]
  2867. // CHECK:STDOUT: %Z.ref: %M.assoc_type = name_ref Z, @Z.%assoc0 [concrete = constants.%assoc0]
  2868. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self.ref [symbolic_self = constants.%.Self.as_type]
  2869. // CHECK:STDOUT: %.loc10_23: type = converted %.Self.ref, %.Self.as_type [symbolic_self = constants.%.Self.as_type]
  2870. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self.ref, element0 [symbolic_self = constants.%.Self.as_wit.iface0]
  2871. // CHECK:STDOUT: %impl.elem0: %struct_type.b.86f = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self = constants.%impl.elem0]
  2872. // CHECK:STDOUT: %.loc10_35: %empty_struct_type = struct_literal ()
  2873. // CHECK:STDOUT: %.loc10_36.1: %struct_type.b.347 = struct_literal (%.loc10_35)
  2874. // CHECK:STDOUT: %.loc10_36.2: type = converted %.loc10_35, constants.%empty_struct_type [concrete = constants.%empty_struct_type]
  2875. // CHECK:STDOUT: %struct: %struct_type.b.86f = struct_value (%.loc10_36.2) [concrete = constants.%struct.0f3]
  2876. // CHECK:STDOUT: %.loc10_36.3: %struct_type.b.86f = converted %.loc10_36.1, %struct [concrete = constants.%struct.0f3]
  2877. // CHECK:STDOUT: %.loc10_17: type = where_expr %.Self [concrete = constants.%M_where.type.132] {
  2878. // CHECK:STDOUT: requirement_rewrite %impl.elem0, %.loc10_36.3
  2879. // CHECK:STDOUT: }
  2880. // CHECK:STDOUT: }
  2881. // CHECK:STDOUT: %impl_witness.loc10: <witness> = impl_witness (constants.%struct.0f3, @impl.9c5.%G.decl) [concrete = constants.%impl_witness.ae0]
  2882. // CHECK:STDOUT: impl_decl @impl.f46 [concrete] {} {
  2883. // CHECK:STDOUT: %C.ref: %C.type = name_ref C, file.%C.decl [concrete = constants.%C.generic]
  2884. // CHECK:STDOUT: %.loc16_9: %empty_tuple.type = tuple_literal ()
  2885. // CHECK:STDOUT: %.loc16_10: type = converted %.loc16_9, constants.%empty_tuple.type [concrete = constants.%empty_tuple.type]
  2886. // CHECK:STDOUT: %C: type = class_type @C, @C(constants.%empty_tuple.type) [concrete = constants.%C.3a0]
  2887. // CHECK:STDOUT: %M.ref: type = name_ref M, file.%M.decl [concrete = constants.%M.type]
  2888. // CHECK:STDOUT: %.Self: %M.type = bind_symbolic_name .Self [symbolic_self = constants.%.Self]
  2889. // CHECK:STDOUT: %.Self.ref: %M.type = name_ref .Self, %.Self [symbolic_self = constants.%.Self]
  2890. // CHECK:STDOUT: %Z.ref: %M.assoc_type = name_ref Z, @Z.%assoc0 [concrete = constants.%assoc0]
  2891. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self.ref [symbolic_self = constants.%.Self.as_type]
  2892. // CHECK:STDOUT: %.loc16_23: type = converted %.Self.ref, %.Self.as_type [symbolic_self = constants.%.Self.as_type]
  2893. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self.ref, element0 [symbolic_self = constants.%.Self.as_wit.iface0]
  2894. // CHECK:STDOUT: %impl.elem0: %struct_type.b.86f = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self = constants.%impl.elem0]
  2895. // CHECK:STDOUT: %.loc16_35: %empty_tuple.type = tuple_literal ()
  2896. // CHECK:STDOUT: %.loc16_36.1: %struct_type.b.161 = struct_literal (%.loc16_35)
  2897. // CHECK:STDOUT: %.loc16_36.2: type = converted %.loc16_35, constants.%empty_tuple.type [concrete = constants.%empty_tuple.type]
  2898. // CHECK:STDOUT: %struct: %struct_type.b.86f = struct_value (%.loc16_36.2) [concrete = constants.%struct.c94]
  2899. // CHECK:STDOUT: %.loc16_36.3: %struct_type.b.86f = converted %.loc16_36.1, %struct [concrete = constants.%struct.c94]
  2900. // CHECK:STDOUT: %.loc16_17: type = where_expr %.Self [concrete = constants.%M_where.type.363] {
  2901. // CHECK:STDOUT: requirement_rewrite %impl.elem0, %.loc16_36.3
  2902. // CHECK:STDOUT: }
  2903. // CHECK:STDOUT: }
  2904. // CHECK:STDOUT: %impl_witness.loc16: <witness> = impl_witness (constants.%struct.c94, @impl.f46.%G.decl) [concrete = constants.%impl_witness.6b9]
  2905. // CHECK:STDOUT: }
  2906. // CHECK:STDOUT:
  2907. // CHECK:STDOUT: interface @M {
  2908. // CHECK:STDOUT: %Self: %M.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
  2909. // CHECK:STDOUT: %Z: %struct_type.b.86f = assoc_const_decl @Z [concrete] {
  2910. // CHECK:STDOUT: %assoc0: %M.assoc_type = assoc_entity element0, @M.%Z [concrete = constants.%assoc0]
  2911. // CHECK:STDOUT: }
  2912. // CHECK:STDOUT: %G.decl: %G.type.020 = fn_decl @G.1 [concrete = constants.%G.91c] {
  2913. // CHECK:STDOUT: %return.patt: type = return_slot_pattern
  2914. // CHECK:STDOUT: %return.param_patt: type = out_param_pattern %return.patt, call_param0
  2915. // CHECK:STDOUT: } {
  2916. // CHECK:STDOUT: %return.param: ref type = out_param call_param0
  2917. // CHECK:STDOUT: %return: ref type = return_slot %return.param
  2918. // CHECK:STDOUT: }
  2919. // CHECK:STDOUT: %assoc1: %M.assoc_type = assoc_entity element1, %G.decl [concrete = constants.%assoc1]
  2920. // CHECK:STDOUT:
  2921. // CHECK:STDOUT: !members:
  2922. // CHECK:STDOUT: .Self = %Self
  2923. // CHECK:STDOUT: .Z = @Z.%assoc0
  2924. // CHECK:STDOUT: .G = %assoc1
  2925. // CHECK:STDOUT: witness = (%Z, %G.decl)
  2926. // CHECK:STDOUT: }
  2927. // CHECK:STDOUT:
  2928. // CHECK:STDOUT: generic assoc_const @Z(@M.%Self: %M.type) {
  2929. // CHECK:STDOUT: assoc_const Z:! %struct_type.b.86f;
  2930. // CHECK:STDOUT: }
  2931. // CHECK:STDOUT:
  2932. // CHECK:STDOUT: impl @impl.9c5: %C as %.loc10_17 {
  2933. // CHECK:STDOUT: %G.decl: %G.type.160 = fn_decl @G.2 [concrete = constants.%G.fc4] {
  2934. // CHECK:STDOUT: %return.patt: type = return_slot_pattern
  2935. // CHECK:STDOUT: %return.param_patt: type = out_param_pattern %return.patt, call_param0
  2936. // CHECK:STDOUT: } {
  2937. // CHECK:STDOUT: %return.param: ref type = out_param call_param0
  2938. // CHECK:STDOUT: %return: ref type = return_slot %return.param
  2939. // CHECK:STDOUT: }
  2940. // CHECK:STDOUT:
  2941. // CHECK:STDOUT: !members:
  2942. // CHECK:STDOUT: .G = %G.decl
  2943. // CHECK:STDOUT: .M = <poisoned>
  2944. // CHECK:STDOUT: witness = file.%impl_witness.loc10
  2945. // CHECK:STDOUT: }
  2946. // CHECK:STDOUT:
  2947. // CHECK:STDOUT: impl @impl.f46: %C as %.loc16_17 {
  2948. // CHECK:STDOUT: %G.decl: %G.type.18e = fn_decl @G.3 [concrete = constants.%G.066] {
  2949. // CHECK:STDOUT: %return.patt: type = return_slot_pattern
  2950. // CHECK:STDOUT: %return.param_patt: type = out_param_pattern %return.patt, call_param0
  2951. // CHECK:STDOUT: } {
  2952. // CHECK:STDOUT: %return.param: ref type = out_param call_param0
  2953. // CHECK:STDOUT: %return: ref type = return_slot %return.param
  2954. // CHECK:STDOUT: }
  2955. // CHECK:STDOUT:
  2956. // CHECK:STDOUT: !members:
  2957. // CHECK:STDOUT: .G = %G.decl
  2958. // CHECK:STDOUT: .M = <poisoned>
  2959. // CHECK:STDOUT: witness = file.%impl_witness.loc16
  2960. // CHECK:STDOUT: }
  2961. // CHECK:STDOUT:
  2962. // CHECK:STDOUT: generic class @C(%T.loc3_9.1: type) {
  2963. // CHECK:STDOUT: %T.loc3_9.2: type = bind_symbolic_name T, 0 [symbolic = %T.loc3_9.2 (constants.%T)]
  2964. // CHECK:STDOUT: %T.patt.loc3_9.2: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc3_9.2 (constants.%T.patt)]
  2965. // CHECK:STDOUT:
  2966. // CHECK:STDOUT: !definition:
  2967. // CHECK:STDOUT:
  2968. // CHECK:STDOUT: class {
  2969. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type]
  2970. // CHECK:STDOUT: complete_type_witness = %complete_type
  2971. // CHECK:STDOUT:
  2972. // CHECK:STDOUT: !members:
  2973. // CHECK:STDOUT: .Self = constants.%C.f2e
  2974. // CHECK:STDOUT: }
  2975. // CHECK:STDOUT: }
  2976. // CHECK:STDOUT:
  2977. // CHECK:STDOUT: generic fn @G.1(@M.%Self: %M.type) {
  2978. // CHECK:STDOUT: fn() -> type;
  2979. // CHECK:STDOUT: }
  2980. // CHECK:STDOUT:
  2981. // CHECK:STDOUT: fn @G.2() -> type {
  2982. // CHECK:STDOUT: !entry:
  2983. // CHECK:STDOUT: %Self.ref: type = name_ref Self, @impl.9c5.%C [concrete = constants.%C.7a7]
  2984. // CHECK:STDOUT: %M.ref: type = name_ref M, file.%M.decl [concrete = constants.%M.type]
  2985. // CHECK:STDOUT: %M.facet: %M.type = facet_value constants.%C.7a7, (constants.%impl_witness.ae0) [concrete = constants.%M.facet.508]
  2986. // CHECK:STDOUT: %.loc12_18: %M.type = converted %Self.ref, %M.facet [concrete = constants.%M.facet.508]
  2987. // CHECK:STDOUT: %Z.ref: %M.assoc_type = name_ref Z, @Z.%assoc0 [concrete = constants.%assoc0]
  2988. // CHECK:STDOUT: %as_type: type = facet_access_type %.loc12_18 [concrete = constants.%C.7a7]
  2989. // CHECK:STDOUT: %.loc12_23: type = converted %.loc12_18, %as_type [concrete = constants.%C.7a7]
  2990. // CHECK:STDOUT: %as_wit.iface0: <witness> = facet_access_witness %.loc12_18, element0 [concrete = constants.%impl_witness.ae0]
  2991. // CHECK:STDOUT: %impl.elem0: %struct_type.b.86f = impl_witness_access %as_wit.iface0, element0 [concrete = constants.%struct.0f3]
  2992. // CHECK:STDOUT: %.loc12_25: type = struct_access %impl.elem0, element0 [concrete = constants.%empty_struct_type]
  2993. // CHECK:STDOUT: return %.loc12_25
  2994. // CHECK:STDOUT: }
  2995. // CHECK:STDOUT:
  2996. // CHECK:STDOUT: fn @G.3() -> type {
  2997. // CHECK:STDOUT: !entry:
  2998. // CHECK:STDOUT: %Self.ref: type = name_ref Self, @impl.f46.%C [concrete = constants.%C.3a0]
  2999. // CHECK:STDOUT: %M.ref: type = name_ref M, file.%M.decl [concrete = constants.%M.type]
  3000. // CHECK:STDOUT: %M.facet: %M.type = facet_value constants.%C.3a0, (constants.%impl_witness.6b9) [concrete = constants.%M.facet.a97]
  3001. // CHECK:STDOUT: %.loc18_18: %M.type = converted %Self.ref, %M.facet [concrete = constants.%M.facet.a97]
  3002. // CHECK:STDOUT: %Z.ref: %M.assoc_type = name_ref Z, @Z.%assoc0 [concrete = constants.%assoc0]
  3003. // CHECK:STDOUT: %as_type: type = facet_access_type %.loc18_18 [concrete = constants.%C.3a0]
  3004. // CHECK:STDOUT: %.loc18_23: type = converted %.loc18_18, %as_type [concrete = constants.%C.3a0]
  3005. // CHECK:STDOUT: %as_wit.iface0: <witness> = facet_access_witness %.loc18_18, element0 [concrete = constants.%impl_witness.6b9]
  3006. // CHECK:STDOUT: %impl.elem0: %struct_type.b.86f = impl_witness_access %as_wit.iface0, element0 [concrete = constants.%struct.c94]
  3007. // CHECK:STDOUT: %.loc18_25: type = struct_access %impl.elem0, element0 [concrete = constants.%empty_tuple.type]
  3008. // CHECK:STDOUT: return %.loc18_25
  3009. // CHECK:STDOUT: }
  3010. // CHECK:STDOUT:
  3011. // CHECK:STDOUT: specific @C(constants.%T) {
  3012. // CHECK:STDOUT: %T.loc3_9.2 => constants.%T
  3013. // CHECK:STDOUT: %T.patt.loc3_9.2 => constants.%T.patt
  3014. // CHECK:STDOUT: }
  3015. // CHECK:STDOUT:
  3016. // CHECK:STDOUT: specific @Z(constants.%Self) {}
  3017. // CHECK:STDOUT:
  3018. // CHECK:STDOUT: specific @G.1(constants.%Self) {}
  3019. // CHECK:STDOUT:
  3020. // CHECK:STDOUT: specific @C(constants.%empty_struct_type) {
  3021. // CHECK:STDOUT: %T.loc3_9.2 => constants.%empty_struct_type
  3022. // CHECK:STDOUT: %T.patt.loc3_9.2 => constants.%T.patt
  3023. // CHECK:STDOUT: }
  3024. // CHECK:STDOUT:
  3025. // CHECK:STDOUT: specific @Z(constants.%M.facet.407) {}
  3026. // CHECK:STDOUT:
  3027. // CHECK:STDOUT: specific @G.1(constants.%M.facet.508) {}
  3028. // CHECK:STDOUT:
  3029. // CHECK:STDOUT: specific @Z(constants.%M.facet.508) {}
  3030. // CHECK:STDOUT:
  3031. // CHECK:STDOUT: specific @C(constants.%empty_tuple.type) {
  3032. // CHECK:STDOUT: %T.loc3_9.2 => constants.%empty_tuple.type
  3033. // CHECK:STDOUT: %T.patt.loc3_9.2 => constants.%T.patt
  3034. // CHECK:STDOUT: }
  3035. // CHECK:STDOUT:
  3036. // CHECK:STDOUT: specific @G.1(constants.%M.facet.a97) {}
  3037. // CHECK:STDOUT:
  3038. // CHECK:STDOUT: specific @Z(constants.%M.facet.a97) {}
  3039. // CHECK:STDOUT:
  3040. // CHECK:STDOUT: --- associated_int_in_array.carbon
  3041. // CHECK:STDOUT:
  3042. // CHECK:STDOUT: constants {
  3043. // CHECK:STDOUT: %I.type: type = facet_type <@I> [concrete]
  3044. // CHECK:STDOUT: %Self.826: %I.type = bind_symbolic_name Self, 0 [symbolic]
  3045. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  3046. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  3047. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  3048. // CHECK:STDOUT: %I.assoc_type: type = assoc_entity_type @I [concrete]
  3049. // CHECK:STDOUT: %assoc0.995: %I.assoc_type = assoc_entity element0, @I.%N [concrete]
  3050. // CHECK:STDOUT: %Self.as_type.b70: type = facet_access_type %Self.826 [symbolic]
  3051. // CHECK:STDOUT: %Bool.type: type = fn_type @Bool [concrete]
  3052. // CHECK:STDOUT: %Bool: %Bool.type = struct_value () [concrete]
  3053. // CHECK:STDOUT: %Self.as_wit.iface0: <witness> = facet_access_witness %Self.826, element0 [symbolic]
  3054. // CHECK:STDOUT: %I.facet.335: %I.type = facet_value %Self.as_type.b70, (%Self.as_wit.iface0) [symbolic]
  3055. // CHECK:STDOUT: %impl.elem0.ace: %i32 = impl_witness_access %Self.as_wit.iface0, element0 [symbolic]
  3056. // CHECK:STDOUT: %ImplicitAs.type.2fd: type = facet_type <@ImplicitAs, @ImplicitAs(Core.IntLiteral)> [concrete]
  3057. // CHECK:STDOUT: %Convert.type.71e: type = fn_type @Convert.1, @ImplicitAs(Core.IntLiteral) [concrete]
  3058. // CHECK:STDOUT: %impl_witness.023: <witness> = impl_witness (imports.%Core.import_ref.85c), @impl.971(%int_32) [concrete]
  3059. // CHECK:STDOUT: %Convert.type.4ad: type = fn_type @Convert.3, @impl.971(%int_32) [concrete]
  3060. // CHECK:STDOUT: %Convert.960: %Convert.type.4ad = struct_value () [concrete]
  3061. // CHECK:STDOUT: %ImplicitAs.facet.ffe: %ImplicitAs.type.2fd = facet_value %i32, (%impl_witness.023) [concrete]
  3062. // CHECK:STDOUT: %.4d8: type = fn_type_with_self_type %Convert.type.71e, %ImplicitAs.facet.ffe [concrete]
  3063. // CHECK:STDOUT: %Convert.bound.69c: <bound method> = bound_method %impl.elem0.ace, %Convert.960 [symbolic]
  3064. // CHECK:STDOUT: %Convert.specific_fn.8a8: <specific function> = specific_function %Convert.960, @Convert.3(%int_32) [concrete]
  3065. // CHECK:STDOUT: %bound_method.37e: <bound method> = bound_method %impl.elem0.ace, %Convert.specific_fn.8a8 [symbolic]
  3066. // CHECK:STDOUT: %int.convert_checked: init Core.IntLiteral = call %bound_method.37e(%impl.elem0.ace) [symbolic]
  3067. // CHECK:STDOUT: %array_type.a05: type = array_type %int.convert_checked, bool [symbolic]
  3068. // CHECK:STDOUT: %F.type.cf0: type = fn_type @F.1 [concrete]
  3069. // CHECK:STDOUT: %F.bc6: %F.type.cf0 = struct_value () [concrete]
  3070. // CHECK:STDOUT: %assoc1: %I.assoc_type = assoc_entity element1, @I.%F.decl [concrete]
  3071. // CHECK:STDOUT: %.Self: %I.type = bind_symbolic_name .Self [symbolic_self]
  3072. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self [symbolic_self]
  3073. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self, element0 [symbolic_self]
  3074. // CHECK:STDOUT: %I.facet.d87: %I.type = facet_value %.Self.as_type, (%.Self.as_wit.iface0) [symbolic_self]
  3075. // CHECK:STDOUT: %impl.elem0.0ad: %i32 = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self]
  3076. // CHECK:STDOUT: %int_2.ecc: Core.IntLiteral = int_value 2 [concrete]
  3077. // CHECK:STDOUT: %ImplicitAs.type.205: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [concrete]
  3078. // CHECK:STDOUT: %Convert.type.1b6: type = fn_type @Convert.1, @ImplicitAs(%i32) [concrete]
  3079. // CHECK:STDOUT: %impl_witness.d39: <witness> = impl_witness (imports.%Core.import_ref.a5b), @impl.4f9(%int_32) [concrete]
  3080. // CHECK:STDOUT: %Convert.type.035: type = fn_type @Convert.2, @impl.4f9(%int_32) [concrete]
  3081. // CHECK:STDOUT: %Convert.956: %Convert.type.035 = struct_value () [concrete]
  3082. // CHECK:STDOUT: %ImplicitAs.facet.2b8: %ImplicitAs.type.205 = facet_value Core.IntLiteral, (%impl_witness.d39) [concrete]
  3083. // CHECK:STDOUT: %.be7: type = fn_type_with_self_type %Convert.type.1b6, %ImplicitAs.facet.2b8 [concrete]
  3084. // CHECK:STDOUT: %Convert.bound.ef9: <bound method> = bound_method %int_2.ecc, %Convert.956 [concrete]
  3085. // CHECK:STDOUT: %Convert.specific_fn.b6f: <specific function> = specific_function %Convert.956, @Convert.2(%int_32) [concrete]
  3086. // CHECK:STDOUT: %bound_method.b92: <bound method> = bound_method %int_2.ecc, %Convert.specific_fn.b6f [concrete]
  3087. // CHECK:STDOUT: %int_2.ef8: %i32 = int_value 2 [concrete]
  3088. // CHECK:STDOUT: %I_where.type: type = facet_type <@I where %impl.elem0.0ad = %int_2.ef8> [concrete]
  3089. // CHECK:STDOUT: %impl_witness.d8a: <witness> = impl_witness (%int_2.ef8, @impl.dd2.%F.decl) [concrete]
  3090. // CHECK:STDOUT: %array_type.c9b: type = array_type %int_2.ecc, bool [concrete]
  3091. // CHECK:STDOUT: %F.type.925: type = fn_type @F.2 [concrete]
  3092. // CHECK:STDOUT: %F.2a6: %F.type.925 = struct_value () [concrete]
  3093. // CHECK:STDOUT: %I.facet.ed1: %I.type = facet_value %empty_tuple.type, (%impl_witness.d8a) [concrete]
  3094. // CHECK:STDOUT: %Convert.bound.fbf: <bound method> = bound_method %int_2.ef8, %Convert.960 [concrete]
  3095. // CHECK:STDOUT: %bound_method.992: <bound method> = bound_method %int_2.ef8, %Convert.specific_fn.8a8 [concrete]
  3096. // CHECK:STDOUT: %true: bool = bool_literal true [concrete]
  3097. // CHECK:STDOUT: %false: bool = bool_literal false [concrete]
  3098. // CHECK:STDOUT: %tuple.type: type = tuple_type (bool, bool) [concrete]
  3099. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [concrete]
  3100. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [concrete]
  3101. // CHECK:STDOUT: %array: %array_type.c9b = tuple_value (%true, %false) [concrete]
  3102. // CHECK:STDOUT: }
  3103. // CHECK:STDOUT:
  3104. // CHECK:STDOUT: imports {
  3105. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  3106. // CHECK:STDOUT: .Int = %Core.Int
  3107. // CHECK:STDOUT: .Bool = %Core.Bool
  3108. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  3109. // CHECK:STDOUT: import Core//prelude
  3110. // CHECK:STDOUT: import Core//prelude/...
  3111. // CHECK:STDOUT: }
  3112. // CHECK:STDOUT: }
  3113. // CHECK:STDOUT:
  3114. // CHECK:STDOUT: file {
  3115. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  3116. // CHECK:STDOUT: .Core = imports.%Core
  3117. // CHECK:STDOUT: .I = %I.decl
  3118. // CHECK:STDOUT: }
  3119. // CHECK:STDOUT: %Core.import = import Core
  3120. // CHECK:STDOUT: %I.decl: type = interface_decl @I [concrete = constants.%I.type] {} {}
  3121. // CHECK:STDOUT: impl_decl @impl.dd2 [concrete] {} {
  3122. // CHECK:STDOUT: %.loc8_7.1: %empty_tuple.type = tuple_literal ()
  3123. // CHECK:STDOUT: %.loc8_7.2: type = converted %.loc8_7.1, constants.%empty_tuple.type [concrete = constants.%empty_tuple.type]
  3124. // CHECK:STDOUT: %I.ref: type = name_ref I, file.%I.decl [concrete = constants.%I.type]
  3125. // CHECK:STDOUT: %.Self: %I.type = bind_symbolic_name .Self [symbolic_self = constants.%.Self]
  3126. // CHECK:STDOUT: %.Self.ref: %I.type = name_ref .Self, %.Self [symbolic_self = constants.%.Self]
  3127. // CHECK:STDOUT: %N.ref: %I.assoc_type = name_ref N, @N.%assoc0 [concrete = constants.%assoc0.995]
  3128. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self.ref [symbolic_self = constants.%.Self.as_type]
  3129. // CHECK:STDOUT: %.loc8_20: type = converted %.Self.ref, %.Self.as_type [symbolic_self = constants.%.Self.as_type]
  3130. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self.ref, element0 [symbolic_self = constants.%.Self.as_wit.iface0]
  3131. // CHECK:STDOUT: %impl.elem0.loc8_20: %i32 = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self = constants.%impl.elem0.0ad]
  3132. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [concrete = constants.%int_2.ecc]
  3133. // CHECK:STDOUT: %impl.elem0.loc8_25: %.be7 = impl_witness_access constants.%impl_witness.d39, element0 [concrete = constants.%Convert.956]
  3134. // CHECK:STDOUT: %bound_method.loc8_25.1: <bound method> = bound_method %int_2, %impl.elem0.loc8_25 [concrete = constants.%Convert.bound.ef9]
  3135. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %impl.elem0.loc8_25, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn.b6f]
  3136. // CHECK:STDOUT: %bound_method.loc8_25.2: <bound method> = bound_method %int_2, %specific_fn [concrete = constants.%bound_method.b92]
  3137. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %bound_method.loc8_25.2(%int_2) [concrete = constants.%int_2.ef8]
  3138. // CHECK:STDOUT: %.loc8_25.1: %i32 = value_of_initializer %int.convert_checked [concrete = constants.%int_2.ef8]
  3139. // CHECK:STDOUT: %.loc8_25.2: %i32 = converted %int_2, %.loc8_25.1 [concrete = constants.%int_2.ef8]
  3140. // CHECK:STDOUT: %.loc8_14: type = where_expr %.Self [concrete = constants.%I_where.type] {
  3141. // CHECK:STDOUT: requirement_rewrite %impl.elem0.loc8_20, %.loc8_25.2
  3142. // CHECK:STDOUT: }
  3143. // CHECK:STDOUT: }
  3144. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (constants.%int_2.ef8, @impl.dd2.%F.decl) [concrete = constants.%impl_witness.d8a]
  3145. // CHECK:STDOUT: }
  3146. // CHECK:STDOUT:
  3147. // CHECK:STDOUT: interface @I {
  3148. // CHECK:STDOUT: %Self: %I.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.826]
  3149. // CHECK:STDOUT: %N: %i32 = assoc_const_decl @N [concrete] {
  3150. // CHECK:STDOUT: %assoc0: %I.assoc_type = assoc_entity element0, @I.%N [concrete = constants.%assoc0.995]
  3151. // CHECK:STDOUT: }
  3152. // CHECK:STDOUT: %F.decl: %F.type.cf0 = fn_decl @F.1 [concrete = constants.%F.bc6] {
  3153. // CHECK:STDOUT: %self.patt: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type.b70) = binding_pattern self
  3154. // CHECK:STDOUT: %self.param_patt: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type.b70) = value_param_pattern %self.patt, call_param0
  3155. // CHECK:STDOUT: %return.patt: @F.1.%array_type.loc5_38.1 (%array_type.a05) = return_slot_pattern
  3156. // CHECK:STDOUT: %return.param_patt: @F.1.%array_type.loc5_38.1 (%array_type.a05) = out_param_pattern %return.patt, call_param1
  3157. // CHECK:STDOUT: } {
  3158. // CHECK:STDOUT: %bool.make_type: init type = call constants.%Bool() [concrete = bool]
  3159. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_37.2: <witness> = facet_access_witness @I.%Self, element0 [symbolic = %Self.as_wit.iface0.loc5_37.1 (constants.%Self.as_wit.iface0)]
  3160. // CHECK:STDOUT: %impl.elem0.loc5_37.2: %i32 = impl_witness_access %Self.as_wit.iface0.loc5_37.2, element0 [symbolic = %impl.elem0.loc5_37.1 (constants.%impl.elem0.ace)]
  3161. // CHECK:STDOUT: %N.ref: %i32 = name_ref N, %impl.elem0.loc5_37.2 [symbolic = %impl.elem0.loc5_37.1 (constants.%impl.elem0.ace)]
  3162. // CHECK:STDOUT: %.loc5_31.1: type = value_of_initializer %bool.make_type [concrete = bool]
  3163. // CHECK:STDOUT: %.loc5_31.2: type = converted %bool.make_type, %.loc5_31.1 [concrete = bool]
  3164. // CHECK:STDOUT: %impl.elem0.loc5_37.3: %.4d8 = impl_witness_access constants.%impl_witness.023, element0 [concrete = constants.%Convert.960]
  3165. // CHECK:STDOUT: %bound_method.loc5_37.2: <bound method> = bound_method %N.ref, %impl.elem0.loc5_37.3 [symbolic = %Convert.bound (constants.%Convert.bound.69c)]
  3166. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %impl.elem0.loc5_37.3, @Convert.3(constants.%int_32) [concrete = constants.%Convert.specific_fn.8a8]
  3167. // CHECK:STDOUT: %bound_method.loc5_37.3: <bound method> = bound_method %N.ref, %specific_fn [symbolic = %bound_method.loc5_37.1 (constants.%bound_method.37e)]
  3168. // CHECK:STDOUT: %int.convert_checked.loc5_37.2: init Core.IntLiteral = call %bound_method.loc5_37.3(%N.ref) [symbolic = %int.convert_checked.loc5_37.1 (constants.%int.convert_checked)]
  3169. // CHECK:STDOUT: %.loc5_37.1: Core.IntLiteral = value_of_initializer %int.convert_checked.loc5_37.2 [symbolic = %int.convert_checked.loc5_37.1 (constants.%int.convert_checked)]
  3170. // CHECK:STDOUT: %.loc5_37.2: Core.IntLiteral = converted %N.ref, %.loc5_37.1 [symbolic = %int.convert_checked.loc5_37.1 (constants.%int.convert_checked)]
  3171. // CHECK:STDOUT: %array_type.loc5_38.2: type = array_type %.loc5_37.2, %.loc5_31.2 [symbolic = %array_type.loc5_38.1 (constants.%array_type.a05)]
  3172. // CHECK:STDOUT: %self.param: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type.b70) = value_param call_param0
  3173. // CHECK:STDOUT: %.loc5_14.1: type = splice_block %.loc5_14.2 [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type.b70)] {
  3174. // CHECK:STDOUT: %Self.ref: %I.type = name_ref Self, @I.%Self [symbolic = %Self (constants.%Self.826)]
  3175. // CHECK:STDOUT: %Self.as_type.loc5_14.2: type = facet_access_type %Self.ref [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type.b70)]
  3176. // CHECK:STDOUT: %.loc5_14.2: type = converted %Self.ref, %Self.as_type.loc5_14.2 [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type.b70)]
  3177. // CHECK:STDOUT: }
  3178. // CHECK:STDOUT: %self: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type.b70) = bind_name self, %self.param
  3179. // CHECK:STDOUT: %return.param: ref @F.1.%array_type.loc5_38.1 (%array_type.a05) = out_param call_param1
  3180. // CHECK:STDOUT: %return: ref @F.1.%array_type.loc5_38.1 (%array_type.a05) = return_slot %return.param
  3181. // CHECK:STDOUT: }
  3182. // CHECK:STDOUT: %assoc1: %I.assoc_type = assoc_entity element1, %F.decl [concrete = constants.%assoc1]
  3183. // CHECK:STDOUT:
  3184. // CHECK:STDOUT: !members:
  3185. // CHECK:STDOUT: .Self = %Self
  3186. // CHECK:STDOUT: .N = @N.%assoc0
  3187. // CHECK:STDOUT: .F = %assoc1
  3188. // CHECK:STDOUT: witness = (%N, %F.decl)
  3189. // CHECK:STDOUT: }
  3190. // CHECK:STDOUT:
  3191. // CHECK:STDOUT: generic assoc_const @N(@I.%Self: %I.type) {
  3192. // CHECK:STDOUT: assoc_const N:! %i32;
  3193. // CHECK:STDOUT: }
  3194. // CHECK:STDOUT:
  3195. // CHECK:STDOUT: impl @impl.dd2: %.loc8_7.2 as %.loc8_14 {
  3196. // CHECK:STDOUT: %F.decl: %F.type.925 = fn_decl @F.2 [concrete = constants.%F.2a6] {
  3197. // CHECK:STDOUT: %self.patt: %empty_tuple.type = binding_pattern self
  3198. // CHECK:STDOUT: %self.param_patt: %empty_tuple.type = value_param_pattern %self.patt, call_param0
  3199. // CHECK:STDOUT: %return.patt: %array_type.c9b = return_slot_pattern
  3200. // CHECK:STDOUT: %return.param_patt: %array_type.c9b = out_param_pattern %return.patt, call_param1
  3201. // CHECK:STDOUT: } {
  3202. // CHECK:STDOUT: %bool.make_type: init type = call constants.%Bool() [concrete = bool]
  3203. // CHECK:STDOUT: %int_2: Core.IntLiteral = int_value 2 [concrete = constants.%int_2.ecc]
  3204. // CHECK:STDOUT: %.loc9_31.1: type = value_of_initializer %bool.make_type [concrete = bool]
  3205. // CHECK:STDOUT: %.loc9_31.2: type = converted %bool.make_type, %.loc9_31.1 [concrete = bool]
  3206. // CHECK:STDOUT: %array_type: type = array_type %int_2, %.loc9_31.2 [concrete = constants.%array_type.c9b]
  3207. // CHECK:STDOUT: %self.param: %empty_tuple.type = value_param call_param0
  3208. // CHECK:STDOUT: %Self.ref: type = name_ref Self, @impl.dd2.%.loc8_7.2 [concrete = constants.%empty_tuple.type]
  3209. // CHECK:STDOUT: %self: %empty_tuple.type = bind_name self, %self.param
  3210. // CHECK:STDOUT: %return.param: ref %array_type.c9b = out_param call_param1
  3211. // CHECK:STDOUT: %return: ref %array_type.c9b = return_slot %return.param
  3212. // CHECK:STDOUT: }
  3213. // CHECK:STDOUT:
  3214. // CHECK:STDOUT: !members:
  3215. // CHECK:STDOUT: .F = %F.decl
  3216. // CHECK:STDOUT: witness = file.%impl_witness
  3217. // CHECK:STDOUT: }
  3218. // CHECK:STDOUT:
  3219. // CHECK:STDOUT: generic fn @F.1(@I.%Self: %I.type) {
  3220. // CHECK:STDOUT: %Self: %I.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self.826)]
  3221. // CHECK:STDOUT: %Self.as_type.loc5_14.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc5_14.1 (constants.%Self.as_type.b70)]
  3222. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_37.1: <witness> = facet_access_witness %Self, element0 [symbolic = %Self.as_wit.iface0.loc5_37.1 (constants.%Self.as_wit.iface0)]
  3223. // CHECK:STDOUT: %impl.elem0.loc5_37.1: %i32 = impl_witness_access %Self.as_wit.iface0.loc5_37.1, element0 [symbolic = %impl.elem0.loc5_37.1 (constants.%impl.elem0.ace)]
  3224. // CHECK:STDOUT: %Convert.bound: <bound method> = bound_method %impl.elem0.loc5_37.1, constants.%Convert.960 [symbolic = %Convert.bound (constants.%Convert.bound.69c)]
  3225. // CHECK:STDOUT: %bound_method.loc5_37.1: <bound method> = bound_method %impl.elem0.loc5_37.1, constants.%Convert.specific_fn.8a8 [symbolic = %bound_method.loc5_37.1 (constants.%bound_method.37e)]
  3226. // CHECK:STDOUT: %int.convert_checked.loc5_37.1: init Core.IntLiteral = call %bound_method.loc5_37.1(%impl.elem0.loc5_37.1) [symbolic = %int.convert_checked.loc5_37.1 (constants.%int.convert_checked)]
  3227. // CHECK:STDOUT: %array_type.loc5_38.1: type = array_type %int.convert_checked.loc5_37.1, bool [symbolic = %array_type.loc5_38.1 (constants.%array_type.a05)]
  3228. // CHECK:STDOUT:
  3229. // CHECK:STDOUT: fn[%self.param_patt: @F.1.%Self.as_type.loc5_14.1 (%Self.as_type.b70)]() -> @F.1.%array_type.loc5_38.1 (%array_type.a05);
  3230. // CHECK:STDOUT: }
  3231. // CHECK:STDOUT:
  3232. // CHECK:STDOUT: fn @F.2[%self.param_patt: %empty_tuple.type]() -> %return.param_patt: %array_type.c9b {
  3233. // CHECK:STDOUT: !entry:
  3234. // CHECK:STDOUT: %true: bool = bool_literal true [concrete = constants.%true]
  3235. // CHECK:STDOUT: %false: bool = bool_literal false [concrete = constants.%false]
  3236. // CHECK:STDOUT: %.loc9_61.1: %tuple.type = tuple_literal (%true, %false)
  3237. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [concrete = constants.%int_0]
  3238. // CHECK:STDOUT: %.loc9_61.2: ref bool = array_index %return, %int_0
  3239. // CHECK:STDOUT: %.loc9_61.3: init bool = initialize_from %true to %.loc9_61.2 [concrete = constants.%true]
  3240. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [concrete = constants.%int_1]
  3241. // CHECK:STDOUT: %.loc9_61.4: ref bool = array_index %return, %int_1
  3242. // CHECK:STDOUT: %.loc9_61.5: init bool = initialize_from %false to %.loc9_61.4 [concrete = constants.%false]
  3243. // CHECK:STDOUT: %.loc9_61.6: init %array_type.c9b = array_init (%.loc9_61.3, %.loc9_61.5) to %return [concrete = constants.%array]
  3244. // CHECK:STDOUT: %.loc9_62: init %array_type.c9b = converted %.loc9_61.1, %.loc9_61.6 [concrete = constants.%array]
  3245. // CHECK:STDOUT: return %.loc9_62 to %return
  3246. // CHECK:STDOUT: }
  3247. // CHECK:STDOUT:
  3248. // CHECK:STDOUT: specific @N(constants.%Self.826) {}
  3249. // CHECK:STDOUT:
  3250. // CHECK:STDOUT: specific @N(constants.%I.facet.335) {}
  3251. // CHECK:STDOUT:
  3252. // CHECK:STDOUT: specific @F.1(constants.%Self.826) {
  3253. // CHECK:STDOUT: %Self => constants.%Self.826
  3254. // CHECK:STDOUT: %Self.as_type.loc5_14.1 => constants.%Self.as_type.b70
  3255. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_37.1 => constants.%Self.as_wit.iface0
  3256. // CHECK:STDOUT: %impl.elem0.loc5_37.1 => constants.%impl.elem0.ace
  3257. // CHECK:STDOUT: %Convert.bound => constants.%Convert.bound.69c
  3258. // CHECK:STDOUT: %bound_method.loc5_37.1 => constants.%bound_method.37e
  3259. // CHECK:STDOUT: %int.convert_checked.loc5_37.1 => constants.%int.convert_checked
  3260. // CHECK:STDOUT: %array_type.loc5_38.1 => constants.%array_type.a05
  3261. // CHECK:STDOUT: }
  3262. // CHECK:STDOUT:
  3263. // CHECK:STDOUT: specific @N(constants.%I.facet.d87) {}
  3264. // CHECK:STDOUT:
  3265. // CHECK:STDOUT: specific @F.1(constants.%I.facet.ed1) {
  3266. // CHECK:STDOUT: %Self => constants.%I.facet.ed1
  3267. // CHECK:STDOUT: %Self.as_type.loc5_14.1 => constants.%empty_tuple.type
  3268. // CHECK:STDOUT: %Self.as_wit.iface0.loc5_37.1 => constants.%impl_witness.d8a
  3269. // CHECK:STDOUT: %impl.elem0.loc5_37.1 => constants.%int_2.ef8
  3270. // CHECK:STDOUT: %Convert.bound => constants.%Convert.bound.fbf
  3271. // CHECK:STDOUT: %bound_method.loc5_37.1 => constants.%bound_method.992
  3272. // CHECK:STDOUT: %int.convert_checked.loc5_37.1 => constants.%int_2.ecc
  3273. // CHECK:STDOUT: %array_type.loc5_38.1 => constants.%array_type.c9b
  3274. // CHECK:STDOUT: }
  3275. // CHECK:STDOUT:
  3276. // CHECK:STDOUT: --- fail_todo_symbolic_associated_type_in_concrete_context.carbon
  3277. // CHECK:STDOUT:
  3278. // CHECK:STDOUT: constants {
  3279. // CHECK:STDOUT: %Z.type: type = facet_type <@Z> [concrete]
  3280. // CHECK:STDOUT: %Self.6e6: %Z.type = bind_symbolic_name Self, 0 [symbolic]
  3281. // CHECK:STDOUT: %Z.assoc_type: type = assoc_entity_type @Z [concrete]
  3282. // CHECK:STDOUT: %assoc0.659: %Z.assoc_type = assoc_entity element0, @Z.%X [concrete]
  3283. // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic]
  3284. // CHECK:STDOUT: %T.patt: type = symbolic_binding_pattern T, 0 [symbolic]
  3285. // CHECK:STDOUT: %C.type: type = generic_class_type @C [concrete]
  3286. // CHECK:STDOUT: %C.generic: %C.type = struct_value () [concrete]
  3287. // CHECK:STDOUT: %C.f2e: type = class_type @C, @C(%T) [symbolic]
  3288. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  3289. // CHECK:STDOUT: %complete_type.357: <witness> = complete_type_witness %empty_struct_type [concrete]
  3290. // CHECK:STDOUT: %D: type = class_type @D [concrete]
  3291. // CHECK:STDOUT: %.Self: %Z.type = bind_symbolic_name .Self [symbolic_self]
  3292. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self [symbolic_self]
  3293. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self, element0 [symbolic_self]
  3294. // CHECK:STDOUT: %Z.facet.bf2: %Z.type = facet_value %.Self.as_type, (%.Self.as_wit.iface0) [symbolic_self]
  3295. // CHECK:STDOUT: %impl.elem0: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self]
  3296. // CHECK:STDOUT: %Z_where.type.b30: type = facet_type <@Z where %impl.elem0 = %C.f2e> [symbolic]
  3297. // CHECK:STDOUT: %require_complete.f02: <witness> = require_complete_type %Z_where.type.b30 [symbolic]
  3298. // CHECK:STDOUT: %impl_witness.00e: <witness> = impl_witness (%C.f2e), @impl(%T) [symbolic]
  3299. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  3300. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  3301. // CHECK:STDOUT: %C.131: type = class_type @C, @C(%D) [concrete]
  3302. // CHECK:STDOUT: %Z_where.type.116: type = facet_type <@Z where %impl.elem0 = %C.131> [concrete]
  3303. // CHECK:STDOUT: %complete_type.fc8: <witness> = complete_type_witness %Z_where.type.116 [concrete]
  3304. // CHECK:STDOUT: %impl_witness.b6f: <witness> = impl_witness (%C.f2e), @impl(%D) [concrete]
  3305. // CHECK:STDOUT: %Z.facet.94c: %Z.type = facet_value %D, (%impl_witness.b6f) [concrete]
  3306. // CHECK:STDOUT: %C.val: %C.131 = struct_value () [concrete]
  3307. // CHECK:STDOUT: }
  3308. // CHECK:STDOUT:
  3309. // CHECK:STDOUT: imports {
  3310. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  3311. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  3312. // CHECK:STDOUT: import Core//prelude
  3313. // CHECK:STDOUT: import Core//prelude/...
  3314. // CHECK:STDOUT: }
  3315. // CHECK:STDOUT: }
  3316. // CHECK:STDOUT:
  3317. // CHECK:STDOUT: file {
  3318. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  3319. // CHECK:STDOUT: .Core = imports.%Core
  3320. // CHECK:STDOUT: .Z = %Z.decl
  3321. // CHECK:STDOUT: .C = %C.decl
  3322. // CHECK:STDOUT: .D = %D.decl
  3323. // CHECK:STDOUT: .F = %F.decl
  3324. // CHECK:STDOUT: }
  3325. // CHECK:STDOUT: %Core.import = import Core
  3326. // CHECK:STDOUT: %Z.decl: type = interface_decl @Z [concrete = constants.%Z.type] {} {}
  3327. // CHECK:STDOUT: %C.decl: %C.type = class_decl @C [concrete = constants.%C.generic] {
  3328. // CHECK:STDOUT: %T.patt.loc6_9.1: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc6_9.2 (constants.%T.patt)]
  3329. // CHECK:STDOUT: } {
  3330. // CHECK:STDOUT: %T.loc6_9.1: type = bind_symbolic_name T, 0 [symbolic = %T.loc6_9.2 (constants.%T)]
  3331. // CHECK:STDOUT: }
  3332. // CHECK:STDOUT: %D.decl: type = class_decl @D [concrete = constants.%D] {} {}
  3333. // CHECK:STDOUT: impl_decl @impl [concrete] {
  3334. // CHECK:STDOUT: %T.patt.loc9_14.1: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc9_14.2 (constants.%T.patt)]
  3335. // CHECK:STDOUT: } {
  3336. // CHECK:STDOUT: %T.ref.loc9_24: type = name_ref T, %T.loc9_14.1 [symbolic = %T.loc9_14.2 (constants.%T)]
  3337. // CHECK:STDOUT: %Z.ref: type = name_ref Z, file.%Z.decl [concrete = constants.%Z.type]
  3338. // CHECK:STDOUT: %.Self: %Z.type = bind_symbolic_name .Self [symbolic_self = constants.%.Self]
  3339. // CHECK:STDOUT: %.Self.ref: %Z.type = name_ref .Self, %.Self [symbolic_self = constants.%.Self]
  3340. // CHECK:STDOUT: %X.ref: %Z.assoc_type = name_ref X, @X.%assoc0 [concrete = constants.%assoc0.659]
  3341. // CHECK:STDOUT: %.Self.as_type: type = facet_access_type %.Self.ref [symbolic_self = constants.%.Self.as_type]
  3342. // CHECK:STDOUT: %.loc9_37: type = converted %.Self.ref, %.Self.as_type [symbolic_self = constants.%.Self.as_type]
  3343. // CHECK:STDOUT: %.Self.as_wit.iface0: <witness> = facet_access_witness %.Self.ref, element0 [symbolic_self = constants.%.Self.as_wit.iface0]
  3344. // CHECK:STDOUT: %impl.elem0: type = impl_witness_access %.Self.as_wit.iface0, element0 [symbolic_self = constants.%impl.elem0]
  3345. // CHECK:STDOUT: %C.ref: %C.type = name_ref C, file.%C.decl [concrete = constants.%C.generic]
  3346. // CHECK:STDOUT: %T.ref.loc9_44: type = name_ref T, %T.loc9_14.1 [symbolic = %T.loc9_14.2 (constants.%T)]
  3347. // CHECK:STDOUT: %C.loc9_45.1: type = class_type @C, @C(constants.%T) [symbolic = %C.loc9_45.2 (constants.%C.f2e)]
  3348. // CHECK:STDOUT: %.loc9_31: type = where_expr %.Self [symbolic = %Z_where.type (constants.%Z_where.type.b30)] {
  3349. // CHECK:STDOUT: requirement_rewrite %impl.elem0, %C.loc9_45.1
  3350. // CHECK:STDOUT: }
  3351. // CHECK:STDOUT: %T.loc9_14.1: type = bind_symbolic_name T, 0 [symbolic = %T.loc9_14.2 (constants.%T)]
  3352. // CHECK:STDOUT: }
  3353. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (constants.%C.f2e), @impl(constants.%T) [symbolic = @impl.%impl_witness (constants.%impl_witness.00e)]
  3354. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {} {}
  3355. // CHECK:STDOUT: }
  3356. // CHECK:STDOUT:
  3357. // CHECK:STDOUT: interface @Z {
  3358. // CHECK:STDOUT: %Self: %Z.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.6e6]
  3359. // CHECK:STDOUT: %X: type = assoc_const_decl @X [concrete] {
  3360. // CHECK:STDOUT: %assoc0: %Z.assoc_type = assoc_entity element0, @Z.%X [concrete = constants.%assoc0.659]
  3361. // CHECK:STDOUT: }
  3362. // CHECK:STDOUT:
  3363. // CHECK:STDOUT: !members:
  3364. // CHECK:STDOUT: .Self = %Self
  3365. // CHECK:STDOUT: .X = @X.%assoc0
  3366. // CHECK:STDOUT: witness = (%X)
  3367. // CHECK:STDOUT: }
  3368. // CHECK:STDOUT:
  3369. // CHECK:STDOUT: generic assoc_const @X(@Z.%Self: %Z.type) {
  3370. // CHECK:STDOUT: assoc_const X:! type;
  3371. // CHECK:STDOUT: }
  3372. // CHECK:STDOUT:
  3373. // CHECK:STDOUT: generic impl @impl(%T.loc9_14.1: type) {
  3374. // CHECK:STDOUT: %T.loc9_14.2: type = bind_symbolic_name T, 0 [symbolic = %T.loc9_14.2 (constants.%T)]
  3375. // CHECK:STDOUT: %T.patt.loc9_14.2: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc9_14.2 (constants.%T.patt)]
  3376. // CHECK:STDOUT: %C.loc9_45.2: type = class_type @C, @C(%T.loc9_14.2) [symbolic = %C.loc9_45.2 (constants.%C.f2e)]
  3377. // CHECK:STDOUT: %Z_where.type: type = facet_type <@Z where constants.%impl.elem0 = %C.loc9_45.2 (constants.%C.f2e)> [symbolic = %Z_where.type (constants.%Z_where.type.b30)]
  3378. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type @impl.%Z_where.type (%Z_where.type.b30) [symbolic = %require_complete (constants.%require_complete.f02)]
  3379. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (constants.%C.f2e), @impl(%T.loc9_14.2) [symbolic = %impl_witness (constants.%impl_witness.00e)]
  3380. // CHECK:STDOUT:
  3381. // CHECK:STDOUT: !definition:
  3382. // CHECK:STDOUT:
  3383. // CHECK:STDOUT: impl: %T.ref.loc9_24 as %.loc9_31 {
  3384. // CHECK:STDOUT: !members:
  3385. // CHECK:STDOUT: witness = file.%impl_witness
  3386. // CHECK:STDOUT: }
  3387. // CHECK:STDOUT: }
  3388. // CHECK:STDOUT:
  3389. // CHECK:STDOUT: generic class @C(%T.loc6_9.1: type) {
  3390. // CHECK:STDOUT: %T.loc6_9.2: type = bind_symbolic_name T, 0 [symbolic = %T.loc6_9.2 (constants.%T)]
  3391. // CHECK:STDOUT: %T.patt.loc6_9.2: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc6_9.2 (constants.%T.patt)]
  3392. // CHECK:STDOUT:
  3393. // CHECK:STDOUT: !definition:
  3394. // CHECK:STDOUT:
  3395. // CHECK:STDOUT: class {
  3396. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  3397. // CHECK:STDOUT: complete_type_witness = %complete_type
  3398. // CHECK:STDOUT:
  3399. // CHECK:STDOUT: !members:
  3400. // CHECK:STDOUT: .Self = constants.%C.f2e
  3401. // CHECK:STDOUT: }
  3402. // CHECK:STDOUT: }
  3403. // CHECK:STDOUT:
  3404. // CHECK:STDOUT: class @D {
  3405. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  3406. // CHECK:STDOUT: complete_type_witness = %complete_type
  3407. // CHECK:STDOUT:
  3408. // CHECK:STDOUT: !members:
  3409. // CHECK:STDOUT: .Self = constants.%D
  3410. // CHECK:STDOUT: }
  3411. // CHECK:STDOUT:
  3412. // CHECK:STDOUT: fn @F() {
  3413. // CHECK:STDOUT: !entry:
  3414. // CHECK:STDOUT: name_binding_decl {
  3415. // CHECK:STDOUT: %a.patt: %C.f2e = binding_pattern a
  3416. // CHECK:STDOUT: }
  3417. // CHECK:STDOUT: %.loc22_21.1: %empty_struct_type = struct_literal ()
  3418. // CHECK:STDOUT: %C.ref: %C.type = name_ref C, file.%C.decl [concrete = constants.%C.generic]
  3419. // CHECK:STDOUT: %D.ref.loc22_28: type = name_ref D, file.%D.decl [concrete = constants.%D]
  3420. // CHECK:STDOUT: %C: type = class_type @C, @C(constants.%D) [concrete = constants.%C.131]
  3421. // CHECK:STDOUT: %.loc22_21.2: ref %C.131 = temporary_storage
  3422. // CHECK:STDOUT: %.loc22_21.3: init %C.131 = class_init (), %.loc22_21.2 [concrete = constants.%C.val]
  3423. // CHECK:STDOUT: %.loc22_21.4: ref %C.131 = temporary %.loc22_21.2, %.loc22_21.3
  3424. // CHECK:STDOUT: %.loc22_23.1: ref %C.131 = converted %.loc22_21.1, %.loc22_21.4
  3425. // CHECK:STDOUT: %.loc22_11.1: type = splice_block %impl.elem0 [symbolic = constants.%C.f2e] {
  3426. // CHECK:STDOUT: %D.ref.loc22_10: type = name_ref D, file.%D.decl [concrete = constants.%D]
  3427. // CHECK:STDOUT: %Z.ref: type = name_ref Z, file.%Z.decl [concrete = constants.%Z.type]
  3428. // CHECK:STDOUT: %X.ref: %Z.assoc_type = name_ref X, @X.%assoc0 [concrete = constants.%assoc0.659]
  3429. // CHECK:STDOUT: %Z.facet: %Z.type = facet_value constants.%D, (constants.%impl_witness.b6f) [concrete = constants.%Z.facet.94c]
  3430. // CHECK:STDOUT: %.loc22_11.2: %Z.type = converted %D.ref.loc22_10, %Z.facet [concrete = constants.%Z.facet.94c]
  3431. // CHECK:STDOUT: %as_wit.iface0: <witness> = facet_access_witness %.loc22_11.2, element0 [concrete = constants.%impl_witness.b6f]
  3432. // CHECK:STDOUT: %impl.elem0: type = impl_witness_access %as_wit.iface0, element0 [symbolic = constants.%C.f2e]
  3433. // CHECK:STDOUT: }
  3434. // CHECK:STDOUT: %.loc22_23.2: %C.f2e = converted %.loc22_23.1, <error> [concrete = <error>]
  3435. // CHECK:STDOUT: %a: %C.f2e = bind_name a, <error>
  3436. // CHECK:STDOUT: return
  3437. // CHECK:STDOUT: }
  3438. // CHECK:STDOUT:
  3439. // CHECK:STDOUT: specific @X(constants.%Self.6e6) {}
  3440. // CHECK:STDOUT:
  3441. // CHECK:STDOUT: specific @C(constants.%T) {
  3442. // CHECK:STDOUT: %T.loc6_9.2 => constants.%T
  3443. // CHECK:STDOUT: %T.patt.loc6_9.2 => constants.%T.patt
  3444. // CHECK:STDOUT:
  3445. // CHECK:STDOUT: !definition:
  3446. // CHECK:STDOUT: }
  3447. // CHECK:STDOUT:
  3448. // CHECK:STDOUT: specific @X(constants.%Z.facet.bf2) {}
  3449. // CHECK:STDOUT:
  3450. // CHECK:STDOUT: specific @impl(constants.%T) {
  3451. // CHECK:STDOUT: %T.loc9_14.2 => constants.%T
  3452. // CHECK:STDOUT: %T.patt.loc9_14.2 => constants.%T.patt
  3453. // CHECK:STDOUT: %C.loc9_45.2 => constants.%C.f2e
  3454. // CHECK:STDOUT: %Z_where.type => constants.%Z_where.type.b30
  3455. // CHECK:STDOUT: %require_complete => constants.%require_complete.f02
  3456. // CHECK:STDOUT: %impl_witness => constants.%impl_witness.00e
  3457. // CHECK:STDOUT: }
  3458. // CHECK:STDOUT:
  3459. // CHECK:STDOUT: specific @C(@impl.%T.loc9_14.2) {}
  3460. // CHECK:STDOUT:
  3461. // CHECK:STDOUT: specific @impl(%T.loc9_14.2) {}
  3462. // CHECK:STDOUT:
  3463. // CHECK:STDOUT: specific @impl(constants.%D) {
  3464. // CHECK:STDOUT: %T.loc9_14.2 => constants.%D
  3465. // CHECK:STDOUT: %T.patt.loc9_14.2 => constants.%T.patt
  3466. // CHECK:STDOUT: %C.loc9_45.2 => constants.%C.131
  3467. // CHECK:STDOUT: %Z_where.type => constants.%Z_where.type.116
  3468. // CHECK:STDOUT: %require_complete => constants.%complete_type.fc8
  3469. // CHECK:STDOUT: %impl_witness => constants.%impl_witness.b6f
  3470. // CHECK:STDOUT:
  3471. // CHECK:STDOUT: !definition:
  3472. // CHECK:STDOUT: }
  3473. // CHECK:STDOUT:
  3474. // CHECK:STDOUT: specific @C(constants.%D) {
  3475. // CHECK:STDOUT: %T.loc6_9.2 => constants.%D
  3476. // CHECK:STDOUT: %T.patt.loc6_9.2 => constants.%T.patt
  3477. // CHECK:STDOUT:
  3478. // CHECK:STDOUT: !definition:
  3479. // CHECK:STDOUT: }
  3480. // CHECK:STDOUT:
  3481. // CHECK:STDOUT: specific @X(constants.%Z.facet.94c) {}
  3482. // CHECK:STDOUT: