import.carbon 234 KB

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