fail_impl_bad_assoc_fn.carbon 97 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433
  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/primitives.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/fail_impl_bad_assoc_fn.carbon
  12. // TIP: To dump output, run:
  13. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/impl/fail_impl_bad_assoc_fn.carbon
  14. interface I { fn F(); }
  15. class NoF {
  16. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+7]]:3: error: missing implementation of F in impl of interface I [ImplMissingFunction]
  17. // CHECK:STDERR: impl as I {}
  18. // CHECK:STDERR: ^~~~~~~~~~~
  19. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-6]]:15: note: associated function F declared here [AssociatedFunctionHere]
  20. // CHECK:STDERR: interface I { fn F(); }
  21. // CHECK:STDERR: ^~~~~~~
  22. // CHECK:STDERR:
  23. impl as I {}
  24. }
  25. class FNotFunction {
  26. impl as I {
  27. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+7]]:5: error: associated function F implemented by non-function [ImplFunctionWithNonFunction]
  28. // CHECK:STDERR: class F;
  29. // CHECK:STDERR: ^~~~~~~~
  30. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-18]]:15: note: associated function F declared here [AssociatedFunctionHere]
  31. // CHECK:STDERR: interface I { fn F(); }
  32. // CHECK:STDERR: ^~~~~~~
  33. // CHECK:STDERR:
  34. class F;
  35. }
  36. }
  37. fn PossiblyF();
  38. // TODO: Should this be permitted?
  39. class FAlias {
  40. impl as I {
  41. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+7]]:11: error: associated function F implemented by non-function [ImplFunctionWithNonFunction]
  42. // CHECK:STDERR: alias F = PossiblyF;
  43. // CHECK:STDERR: ^
  44. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-34]]:15: note: associated function F declared here [AssociatedFunctionHere]
  45. // CHECK:STDERR: interface I { fn F(); }
  46. // CHECK:STDERR: ^~~~~~~
  47. // CHECK:STDERR:
  48. alias F = PossiblyF;
  49. }
  50. }
  51. class FExtraParam {
  52. impl as I {
  53. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+10]]:5: error: 0 arguments passed to function expecting 1 argument [CallArgCountMismatch]
  54. // CHECK:STDERR: fn F(b: bool);
  55. // CHECK:STDERR: ^~~~~~~~~~~~~~
  56. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+7]]:5: note: calling function declared here [InCallToEntity]
  57. // CHECK:STDERR: fn F(b: bool);
  58. // CHECK:STDERR: ^~~~~~~~~~~~~~
  59. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-50]]:15: note: while building thunk to match the signature of this function [ThunkSignature]
  60. // CHECK:STDERR: interface I { fn F(); }
  61. // CHECK:STDERR: ^~~~~~~
  62. // CHECK:STDERR:
  63. fn F(b: bool);
  64. }
  65. }
  66. class FExtraImplicitParam {
  67. impl as I {
  68. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+10]]:5: error: missing object argument in method call [MissingObjectInMethodCall]
  69. // CHECK:STDERR: fn F[self: Self]();
  70. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~
  71. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+7]]:5: note: calling function declared here [InCallToFunction]
  72. // CHECK:STDERR: fn F[self: Self]();
  73. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~
  74. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-66]]:15: note: while building thunk to match the signature of this function [ThunkSignature]
  75. // CHECK:STDERR: interface I { fn F(); }
  76. // CHECK:STDERR: ^~~~~~~
  77. // CHECK:STDERR:
  78. fn F[self: Self]();
  79. }
  80. }
  81. // TODO: Should this be permitted?
  82. class FExtraReturnType {
  83. impl as I {
  84. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+7]]:5: error: function redeclaration differs because return type is `bool` [FunctionRedeclReturnTypeDiffers]
  85. // CHECK:STDERR: fn F() -> bool;
  86. // CHECK:STDERR: ^~~~~~~~~~~~~~~
  87. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-80]]:15: note: previously declared with no return type [FunctionRedeclReturnTypePreviousNoReturn]
  88. // CHECK:STDERR: interface I { fn F(); }
  89. // CHECK:STDERR: ^~~~~~~
  90. // CHECK:STDERR:
  91. fn F() -> bool;
  92. }
  93. }
  94. interface J { fn F[self: bool](b: bool) -> bool; }
  95. class FMissingParam {
  96. impl as J {
  97. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+10]]:5: error: 1 argument passed to function expecting 0 arguments [CallArgCountMismatch]
  98. // CHECK:STDERR: fn F[self: bool]() -> bool;
  99. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~
  100. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+7]]:5: note: calling function declared here [InCallToEntity]
  101. // CHECK:STDERR: fn F[self: bool]() -> bool;
  102. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~
  103. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-10]]:15: note: while building thunk to match the signature of this function [ThunkSignature]
  104. // CHECK:STDERR: interface J { fn F[self: bool](b: bool) -> bool; }
  105. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  106. // CHECK:STDERR:
  107. fn F[self: bool]() -> bool;
  108. }
  109. }
  110. class FMissingImplicitParam {
  111. impl as J {
  112. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+7]]:5: error: member name of type `<type of F>` in compound member access is not an instance member or an interface member [CompoundMemberAccessDoesNotUseBase]
  113. // CHECK:STDERR: fn F(b: bool) -> bool;
  114. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~
  115. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-23]]:15: note: while building thunk to match the signature of this function [ThunkSignature]
  116. // CHECK:STDERR: interface J { fn F[self: bool](b: bool) -> bool; }
  117. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  118. // CHECK:STDERR:
  119. fn F(b: bool) -> bool;
  120. }
  121. }
  122. class FMissingReturnType {
  123. impl as J {
  124. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+16]]:5: error: cannot implicitly convert expression of type `()` to `bool` [ConversionFailure]
  125. // CHECK:STDERR: fn F[self: bool](b: bool);
  126. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~
  127. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+13]]:5: note: type `()` does not implement interface `Core.ImplicitAs(bool)` [MissingImplInMemberAccessNote]
  128. // CHECK:STDERR: fn F[self: bool](b: bool);
  129. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~
  130. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-39]]:15: note: while building thunk to match the signature of this function [ThunkSignature]
  131. // CHECK:STDERR: interface J { fn F[self: bool](b: bool) -> bool; }
  132. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  133. // CHECK:STDERR:
  134. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-43]]:32: error: cannot implicitly convert expression of type `bool` to `FDifferentParamType` [ConversionFailure]
  135. // CHECK:STDERR: interface J { fn F[self: bool](b: bool) -> bool; }
  136. // CHECK:STDERR: ^~~~~~~
  137. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-46]]:32: note: type `bool` does not implement interface `Core.ImplicitAs(FDifferentParamType)` [MissingImplInMemberAccessNote]
  138. // CHECK:STDERR: interface J { fn F[self: bool](b: bool) -> bool; }
  139. // CHECK:STDERR: ^~~~~~~
  140. fn F[self: bool](b: bool);
  141. }
  142. }
  143. class FDifferentParamType {
  144. impl as J {
  145. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+13]]:22: note: initializing function parameter [InCallToFunctionParam]
  146. // CHECK:STDERR: fn F[self: bool](b: Self) -> bool;
  147. // CHECK:STDERR: ^~~~~~~
  148. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-58]]:15: note: while building thunk to match the signature of this function [ThunkSignature]
  149. // CHECK:STDERR: interface J { fn F[self: bool](b: bool) -> bool; }
  150. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  151. // CHECK:STDERR:
  152. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-62]]:20: error: cannot implicitly convert expression of type `bool` to `FDifferentImplicitParamType` [ConversionFailure]
  153. // CHECK:STDERR: interface J { fn F[self: bool](b: bool) -> bool; }
  154. // CHECK:STDERR: ^~~~~~~~~~
  155. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-65]]:20: note: type `bool` does not implement interface `Core.ImplicitAs(FDifferentImplicitParamType)` [MissingImplInMemberAccessNote]
  156. // CHECK:STDERR: interface J { fn F[self: bool](b: bool) -> bool; }
  157. // CHECK:STDERR: ^~~~~~~~~~
  158. fn F[self: bool](b: Self) -> bool;
  159. }
  160. }
  161. class FDifferentImplicitParamType {
  162. impl as J {
  163. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+7]]:10: note: initializing function parameter [InCallToFunctionParam]
  164. // CHECK:STDERR: fn F[self: Self](b: bool) -> bool;
  165. // CHECK:STDERR: ^~~~~~~~~~
  166. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-77]]:15: note: while building thunk to match the signature of this function [ThunkSignature]
  167. // CHECK:STDERR: interface J { fn F[self: bool](b: bool) -> bool; }
  168. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  169. // CHECK:STDERR:
  170. fn F[self: Self](b: bool) -> bool;
  171. }
  172. }
  173. class FDifferentReturnType {
  174. impl as J {
  175. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+10]]:5: error: cannot implicitly convert expression of type `FDifferentReturnType` to `bool` [ConversionFailure]
  176. // CHECK:STDERR: fn F[self: bool](b: bool) -> Self;
  177. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  178. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+7]]:5: note: type `FDifferentReturnType` does not implement interface `Core.ImplicitAs(bool)` [MissingImplInMemberAccessNote]
  179. // CHECK:STDERR: fn F[self: bool](b: bool) -> Self;
  180. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  181. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-93]]:15: note: while building thunk to match the signature of this function [ThunkSignature]
  182. // CHECK:STDERR: interface J { fn F[self: bool](b: bool) -> bool; }
  183. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  184. // CHECK:STDERR:
  185. fn F[self: bool](b: bool) -> Self;
  186. }
  187. }
  188. interface SelfNested {
  189. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+6]]:8: error: cannot implicitly convert expression of type `SelfNestedBadParam` to `i32` [ConversionFailure]
  190. // CHECK:STDERR: fn F(x: (Self*, {.x: Self, .y: i32})) -> array(Self, 4);
  191. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  192. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+3]]:8: note: type `SelfNestedBadParam` does not implement interface `Core.ImplicitAs(i32)` [MissingImplInMemberAccessNote]
  193. // CHECK:STDERR: fn F(x: (Self*, {.x: Self, .y: i32})) -> array(Self, 4);
  194. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  195. fn F(x: (Self*, {.x: Self, .y: i32})) -> array(Self, 4);
  196. }
  197. class SelfNestedBadParam {
  198. impl as SelfNested {
  199. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+7]]:10: note: initializing function parameter [InCallToFunctionParam]
  200. // CHECK:STDERR: fn F(x: (SelfNestedBadParam*, {.x: i32, .y: i32})) -> array(SelfNestedBadParam, 4);
  201. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  202. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-8]]:3: note: while building thunk to match the signature of this function [ThunkSignature]
  203. // CHECK:STDERR: fn F(x: (Self*, {.x: Self, .y: i32})) -> array(Self, 4);
  204. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  205. // CHECK:STDERR:
  206. fn F(x: (SelfNestedBadParam*, {.x: i32, .y: i32})) -> array(SelfNestedBadParam, 4);
  207. }
  208. }
  209. class SelfNestedBadReturnType {
  210. impl as SelfNested {
  211. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+10]]:5: error: cannot implicitly convert expression of type `array(SelfNestedBadParam, 4)` to `array(SelfNestedBadReturnType, 4)` [ConversionFailure]
  212. // CHECK:STDERR: fn F(x: (SelfNestedBadReturnType*, {.x: SelfNestedBadReturnType, .y: i32})) -> array(SelfNestedBadParam, 4);
  213. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  214. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE+7]]:5: note: type `array(SelfNestedBadParam, 4)` does not implement interface `Core.ImplicitAs(array(SelfNestedBadReturnType, 4))` [MissingImplInMemberAccessNote]
  215. // CHECK:STDERR: fn F(x: (SelfNestedBadReturnType*, {.x: SelfNestedBadReturnType, .y: i32})) -> array(SelfNestedBadParam, 4);
  216. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  217. // CHECK:STDERR: fail_impl_bad_assoc_fn.carbon:[[@LINE-24]]:3: note: while building thunk to match the signature of this function [ThunkSignature]
  218. // CHECK:STDERR: fn F(x: (Self*, {.x: Self, .y: i32})) -> array(Self, 4);
  219. // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  220. // CHECK:STDERR:
  221. fn F(x: (SelfNestedBadReturnType*, {.x: SelfNestedBadReturnType, .y: i32})) -> array(SelfNestedBadParam, 4);
  222. }
  223. }
  224. // CHECK:STDOUT: --- fail_impl_bad_assoc_fn.carbon
  225. // CHECK:STDOUT:
  226. // CHECK:STDOUT: constants {
  227. // CHECK:STDOUT: %I.type: type = facet_type <@I> [concrete]
  228. // CHECK:STDOUT: %Self.826: %I.type = bind_symbolic_name Self, 0 [symbolic]
  229. // CHECK:STDOUT: %F.type.cf0: type = fn_type @F.loc15 [concrete]
  230. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  231. // CHECK:STDOUT: %F.bc6: %F.type.cf0 = struct_value () [concrete]
  232. // CHECK:STDOUT: %I.assoc_type: type = assoc_entity_type @I [concrete]
  233. // CHECK:STDOUT: %assoc0.82e: %I.assoc_type = assoc_entity element0, @I.%F.decl [concrete]
  234. // CHECK:STDOUT: %NoF: type = class_type @NoF [concrete]
  235. // CHECK:STDOUT: %I.impl_witness.901: <witness> = impl_witness @NoF.%I.impl_witness_table [concrete]
  236. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  237. // CHECK:STDOUT: %complete_type.357: <witness> = complete_type_witness %empty_struct_type [concrete]
  238. // CHECK:STDOUT: %FNotFunction: type = class_type @FNotFunction [concrete]
  239. // CHECK:STDOUT: %I.impl_witness.44e: <witness> = impl_witness @FNotFunction.%I.impl_witness_table [concrete]
  240. // CHECK:STDOUT: %F.70c: type = class_type @F.loc37 [concrete]
  241. // CHECK:STDOUT: %PossiblyF.type: type = fn_type @PossiblyF [concrete]
  242. // CHECK:STDOUT: %PossiblyF: %PossiblyF.type = struct_value () [concrete]
  243. // CHECK:STDOUT: %FAlias: type = class_type @FAlias [concrete]
  244. // CHECK:STDOUT: %I.impl_witness.c80: <witness> = impl_witness @FAlias.%I.impl_witness_table [concrete]
  245. // CHECK:STDOUT: %FExtraParam: type = class_type @FExtraParam [concrete]
  246. // CHECK:STDOUT: %I.impl_witness.1f3: <witness> = impl_witness @FExtraParam.%I.impl_witness_table [concrete]
  247. // CHECK:STDOUT: %Bool.type: type = fn_type @Bool [concrete]
  248. // CHECK:STDOUT: %Bool: %Bool.type = struct_value () [concrete]
  249. // CHECK:STDOUT: %pattern_type.831: type = pattern_type bool [concrete]
  250. // CHECK:STDOUT: %F.type.44ef8c.1: type = fn_type @F.loc69_18.1 [concrete]
  251. // CHECK:STDOUT: %F.424e9e.1: %F.type.44ef8c.1 = struct_value () [concrete]
  252. // CHECK:STDOUT: %I.facet.fa4: %I.type = facet_value %FExtraParam, (%I.impl_witness.1f3) [concrete]
  253. // CHECK:STDOUT: %F.type.44ef8c.2: type = fn_type @F.loc69_18.2 [concrete]
  254. // CHECK:STDOUT: %F.424e9e.2: %F.type.44ef8c.2 = struct_value () [concrete]
  255. // CHECK:STDOUT: %FExtraImplicitParam: type = class_type @FExtraImplicitParam [concrete]
  256. // CHECK:STDOUT: %I.impl_witness.a7b: <witness> = impl_witness @FExtraImplicitParam.%I.impl_witness_table [concrete]
  257. // CHECK:STDOUT: %pattern_type.8ae: type = pattern_type %FExtraImplicitParam [concrete]
  258. // CHECK:STDOUT: %F.type.e1abdd.1: type = fn_type @F.loc85_23.1 [concrete]
  259. // CHECK:STDOUT: %F.6ff574.1: %F.type.e1abdd.1 = struct_value () [concrete]
  260. // CHECK:STDOUT: %I.facet.ee5: %I.type = facet_value %FExtraImplicitParam, (%I.impl_witness.a7b) [concrete]
  261. // CHECK:STDOUT: %F.type.e1abdd.2: type = fn_type @F.loc85_23.2 [concrete]
  262. // CHECK:STDOUT: %F.6ff574.2: %F.type.e1abdd.2 = struct_value () [concrete]
  263. // CHECK:STDOUT: %FExtraReturnType: type = class_type @FExtraReturnType [concrete]
  264. // CHECK:STDOUT: %I.impl_witness.59a: <witness> = impl_witness @FExtraReturnType.%I.impl_witness_table [concrete]
  265. // CHECK:STDOUT: %F.type.387: type = fn_type @F.loc99 [concrete]
  266. // CHECK:STDOUT: %F.df5: %F.type.387 = struct_value () [concrete]
  267. // CHECK:STDOUT: %I.facet.d5c: %I.type = facet_value %FExtraReturnType, (%I.impl_witness.59a) [concrete]
  268. // CHECK:STDOUT: %J.type: type = facet_type <@J> [concrete]
  269. // CHECK:STDOUT: %Self.ccd: %J.type = bind_symbolic_name Self, 0 [symbolic]
  270. // CHECK:STDOUT: %F.type.c14: type = fn_type @F.loc103 [concrete]
  271. // CHECK:STDOUT: %F.b71: %F.type.c14 = struct_value () [concrete]
  272. // CHECK:STDOUT: %J.assoc_type: type = assoc_entity_type @J [concrete]
  273. // CHECK:STDOUT: %assoc0.922: %J.assoc_type = assoc_entity element0, @J.%F.decl [concrete]
  274. // CHECK:STDOUT: %FMissingParam: type = class_type @FMissingParam [concrete]
  275. // CHECK:STDOUT: %J.impl_witness.4e9: <witness> = impl_witness @FMissingParam.%J.impl_witness_table [concrete]
  276. // CHECK:STDOUT: %F.type.69596c.1: type = fn_type @F.loc117_31.1 [concrete]
  277. // CHECK:STDOUT: %F.738f31.1: %F.type.69596c.1 = struct_value () [concrete]
  278. // CHECK:STDOUT: %J.facet.94c: %J.type = facet_value %FMissingParam, (%J.impl_witness.4e9) [concrete]
  279. // CHECK:STDOUT: %F.type.69596c.2: type = fn_type @F.loc117_31.2 [concrete]
  280. // CHECK:STDOUT: %F.738f31.2: %F.type.69596c.2 = struct_value () [concrete]
  281. // CHECK:STDOUT: %FMissingImplicitParam: type = class_type @FMissingImplicitParam [concrete]
  282. // CHECK:STDOUT: %J.impl_witness.841: <witness> = impl_witness @FMissingImplicitParam.%J.impl_witness_table [concrete]
  283. // CHECK:STDOUT: %F.type.d97cef.1: type = fn_type @F.loc130_26.1 [concrete]
  284. // CHECK:STDOUT: %F.01de92.1: %F.type.d97cef.1 = struct_value () [concrete]
  285. // CHECK:STDOUT: %J.facet.e7e: %J.type = facet_value %FMissingImplicitParam, (%J.impl_witness.841) [concrete]
  286. // CHECK:STDOUT: %F.type.d97cef.2: type = fn_type @F.loc130_26.2 [concrete]
  287. // CHECK:STDOUT: %F.01de92.2: %F.type.d97cef.2 = struct_value () [concrete]
  288. // CHECK:STDOUT: %FMissingReturnType: type = class_type @FMissingReturnType [concrete]
  289. // CHECK:STDOUT: %J.impl_witness.e75: <witness> = impl_witness @FMissingReturnType.%J.impl_witness_table [concrete]
  290. // CHECK:STDOUT: %F.type.123d7a.1: type = fn_type @F.loc152_30.1 [concrete]
  291. // CHECK:STDOUT: %F.c7d02d.1: %F.type.123d7a.1 = struct_value () [concrete]
  292. // CHECK:STDOUT: %J.facet.974: %J.type = facet_value %FMissingReturnType, (%J.impl_witness.e75) [concrete]
  293. // CHECK:STDOUT: %F.type.123d7a.2: type = fn_type @F.loc152_30.2 [concrete]
  294. // CHECK:STDOUT: %F.c7d02d.2: %F.type.123d7a.2 = struct_value () [concrete]
  295. // CHECK:STDOUT: %ImplicitAs.type.cc7: type = generic_interface_type @ImplicitAs [concrete]
  296. // CHECK:STDOUT: %ImplicitAs.generic: %ImplicitAs.type.cc7 = struct_value () [concrete]
  297. // CHECK:STDOUT: %FDifferentParamType: type = class_type @FDifferentParamType [concrete]
  298. // CHECK:STDOUT: %J.impl_witness.cbe: <witness> = impl_witness @FDifferentParamType.%J.impl_witness_table [concrete]
  299. // CHECK:STDOUT: %pattern_type.b90: type = pattern_type %FDifferentParamType [concrete]
  300. // CHECK:STDOUT: %F.type.6b537d.1: type = fn_type @F.loc171_38.1 [concrete]
  301. // CHECK:STDOUT: %F.04313a.1: %F.type.6b537d.1 = struct_value () [concrete]
  302. // CHECK:STDOUT: %J.facet.37e: %J.type = facet_value %FDifferentParamType, (%J.impl_witness.cbe) [concrete]
  303. // CHECK:STDOUT: %F.type.6b537d.2: type = fn_type @F.loc171_38.2 [concrete]
  304. // CHECK:STDOUT: %F.04313a.2: %F.type.6b537d.2 = struct_value () [concrete]
  305. // CHECK:STDOUT: %FDifferentImplicitParamType: type = class_type @FDifferentImplicitParamType [concrete]
  306. // CHECK:STDOUT: %J.impl_witness.af2: <witness> = impl_witness @FDifferentImplicitParamType.%J.impl_witness_table [concrete]
  307. // CHECK:STDOUT: %pattern_type.9cc: type = pattern_type %FDifferentImplicitParamType [concrete]
  308. // CHECK:STDOUT: %F.type.d6232a.1: type = fn_type @F.loc184_38.1 [concrete]
  309. // CHECK:STDOUT: %F.886f70.1: %F.type.d6232a.1 = struct_value () [concrete]
  310. // CHECK:STDOUT: %J.facet.bf1: %J.type = facet_value %FDifferentImplicitParamType, (%J.impl_witness.af2) [concrete]
  311. // CHECK:STDOUT: %F.type.d6232a.2: type = fn_type @F.loc184_38.2 [concrete]
  312. // CHECK:STDOUT: %F.886f70.2: %F.type.d6232a.2 = struct_value () [concrete]
  313. // CHECK:STDOUT: %FDifferentReturnType: type = class_type @FDifferentReturnType [concrete]
  314. // CHECK:STDOUT: %J.impl_witness.bc1: <witness> = impl_witness @FDifferentReturnType.%J.impl_witness_table [concrete]
  315. // CHECK:STDOUT: %pattern_type.8ee: type = pattern_type %FDifferentReturnType [concrete]
  316. // CHECK:STDOUT: %F.type.d3b58f.1: type = fn_type @F.loc200_38.1 [concrete]
  317. // CHECK:STDOUT: %F.be86c9.1: %F.type.d3b58f.1 = struct_value () [concrete]
  318. // CHECK:STDOUT: %J.facet.67f: %J.type = facet_value %FDifferentReturnType, (%J.impl_witness.bc1) [concrete]
  319. // CHECK:STDOUT: %F.type.d3b58f.2: type = fn_type @F.loc200_38.2 [concrete]
  320. // CHECK:STDOUT: %F.be86c9.2: %F.type.d3b58f.2 = struct_value () [concrete]
  321. // CHECK:STDOUT: %Destroy.type: type = facet_type <@Destroy> [concrete]
  322. // CHECK:STDOUT: %Op.type.3d3: type = fn_type @Op.2, @Destroy.impl(%FDifferentReturnType) [concrete]
  323. // CHECK:STDOUT: %Op.ddd: %Op.type.3d3 = struct_value () [concrete]
  324. // CHECK:STDOUT: %ptr.954: type = ptr_type %FDifferentReturnType [concrete]
  325. // CHECK:STDOUT: %Op.specific_fn.b4b: <specific function> = specific_function %Op.ddd, @Op.2(%FDifferentReturnType) [concrete]
  326. // CHECK:STDOUT: %SelfNested.type: type = facet_type <@SelfNested> [concrete]
  327. // CHECK:STDOUT: %Self.2ff: %SelfNested.type = bind_symbolic_name Self, 0 [symbolic]
  328. // CHECK:STDOUT: %Self.as_type.e1e: type = facet_access_type %Self.2ff [symbolic]
  329. // CHECK:STDOUT: %ptr.e87: type = ptr_type %Self.as_type.e1e [symbolic]
  330. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  331. // CHECK:STDOUT: %Int.type: type = generic_class_type @Int [concrete]
  332. // CHECK:STDOUT: %Int.generic: %Int.type = struct_value () [concrete]
  333. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  334. // CHECK:STDOUT: %struct_type.x.y.81e: type = struct_type {.x: %Self.as_type.e1e, .y: %i32} [symbolic]
  335. // CHECK:STDOUT: %tuple.type.24b: type = tuple_type (type, type) [concrete]
  336. // CHECK:STDOUT: %tuple.type.229: type = tuple_type (%ptr.e87, %struct_type.x.y.81e) [symbolic]
  337. // CHECK:STDOUT: %pattern_type.ced: type = pattern_type %tuple.type.229 [symbolic]
  338. // CHECK:STDOUT: %int_4: Core.IntLiteral = int_value 4 [concrete]
  339. // CHECK:STDOUT: %array_type.873: type = array_type %int_4, %Self.as_type.e1e [symbolic]
  340. // CHECK:STDOUT: %pattern_type.c7e: type = pattern_type %array_type.873 [symbolic]
  341. // CHECK:STDOUT: %F.type.6ed: type = fn_type @F.loc211 [concrete]
  342. // CHECK:STDOUT: %F.998: %F.type.6ed = struct_value () [concrete]
  343. // CHECK:STDOUT: %SelfNested.assoc_type: type = assoc_entity_type @SelfNested [concrete]
  344. // CHECK:STDOUT: %assoc0.beb: %SelfNested.assoc_type = assoc_entity element0, @SelfNested.%F.decl [concrete]
  345. // CHECK:STDOUT: %SelfNestedBadParam: type = class_type @SelfNestedBadParam [concrete]
  346. // CHECK:STDOUT: %SelfNested.impl_witness.e31: <witness> = impl_witness @SelfNestedBadParam.%SelfNested.impl_witness_table [concrete]
  347. // CHECK:STDOUT: %ptr.4cd: type = ptr_type %SelfNestedBadParam [concrete]
  348. // CHECK:STDOUT: %struct_type.x.y.871: type = struct_type {.x: %i32, .y: %i32} [concrete]
  349. // CHECK:STDOUT: %tuple.type.a7d: type = tuple_type (%ptr.4cd, %struct_type.x.y.871) [concrete]
  350. // CHECK:STDOUT: %pattern_type.714: type = pattern_type %tuple.type.a7d [concrete]
  351. // CHECK:STDOUT: %array_type.a41: type = array_type %int_4, %SelfNestedBadParam [concrete]
  352. // CHECK:STDOUT: %pattern_type.1f1: type = pattern_type %array_type.a41 [concrete]
  353. // CHECK:STDOUT: %F.type.f90165.1: type = fn_type @F.loc223_87.1 [concrete]
  354. // CHECK:STDOUT: %F.fa8d04.1: %F.type.f90165.1 = struct_value () [concrete]
  355. // CHECK:STDOUT: %SelfNested.facet.608: %SelfNested.type = facet_value %SelfNestedBadParam, (%SelfNested.impl_witness.e31) [concrete]
  356. // CHECK:STDOUT: %struct_type.x.y.a89: type = struct_type {.x: %SelfNestedBadParam, .y: %i32} [concrete]
  357. // CHECK:STDOUT: %tuple.type.9c9: type = tuple_type (%ptr.4cd, %struct_type.x.y.a89) [concrete]
  358. // CHECK:STDOUT: %pattern_type.a5c: type = pattern_type %tuple.type.9c9 [concrete]
  359. // CHECK:STDOUT: %F.type.f90165.2: type = fn_type @F.loc223_87.2 [concrete]
  360. // CHECK:STDOUT: %F.fa8d04.2: %F.type.f90165.2 = struct_value () [concrete]
  361. // CHECK:STDOUT: %ptr.f40: type = ptr_type %array_type.a41 [concrete]
  362. // CHECK:STDOUT: %Op.type.ba3: type = fn_type @Op.2, @Destroy.impl(%array_type.a41) [concrete]
  363. // CHECK:STDOUT: %Op.d25: %Op.type.ba3 = struct_value () [concrete]
  364. // CHECK:STDOUT: %Op.specific_fn.235: <specific function> = specific_function %Op.d25, @Op.2(%array_type.a41) [concrete]
  365. // CHECK:STDOUT: %SelfNestedBadReturnType: type = class_type @SelfNestedBadReturnType [concrete]
  366. // CHECK:STDOUT: %SelfNested.impl_witness.d5e: <witness> = impl_witness @SelfNestedBadReturnType.%SelfNested.impl_witness_table [concrete]
  367. // CHECK:STDOUT: %ptr.612: type = ptr_type %SelfNestedBadReturnType [concrete]
  368. // CHECK:STDOUT: %struct_type.x.y.ac5: type = struct_type {.x: %SelfNestedBadReturnType, .y: %i32} [concrete]
  369. // CHECK:STDOUT: %tuple.type.eb9: type = tuple_type (%ptr.612, %struct_type.x.y.ac5) [concrete]
  370. // CHECK:STDOUT: %pattern_type.23f: type = pattern_type %tuple.type.eb9 [concrete]
  371. // CHECK:STDOUT: %F.type.0e7d1d.1: type = fn_type @F.loc239_112.1 [concrete]
  372. // CHECK:STDOUT: %F.0bc78a.1: %F.type.0e7d1d.1 = struct_value () [concrete]
  373. // CHECK:STDOUT: %SelfNested.facet.766: %SelfNested.type = facet_value %SelfNestedBadReturnType, (%SelfNested.impl_witness.d5e) [concrete]
  374. // CHECK:STDOUT: %array_type.126: type = array_type %int_4, %SelfNestedBadReturnType [concrete]
  375. // CHECK:STDOUT: %pattern_type.f56: type = pattern_type %array_type.126 [concrete]
  376. // CHECK:STDOUT: %F.type.0e7d1d.2: type = fn_type @F.loc239_112.2 [concrete]
  377. // CHECK:STDOUT: %F.0bc78a.2: %F.type.0e7d1d.2 = struct_value () [concrete]
  378. // CHECK:STDOUT: }
  379. // CHECK:STDOUT:
  380. // CHECK:STDOUT: imports {
  381. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  382. // CHECK:STDOUT: .Bool = %Core.Bool
  383. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  384. // CHECK:STDOUT: .Destroy = %Core.Destroy
  385. // CHECK:STDOUT: .Int = %Core.Int
  386. // CHECK:STDOUT: import Core//prelude
  387. // CHECK:STDOUT: import Core//prelude/...
  388. // CHECK:STDOUT: }
  389. // CHECK:STDOUT: %Core.Bool: %Bool.type = import_ref Core//prelude/parts/bool, Bool, loaded [concrete = constants.%Bool]
  390. // CHECK:STDOUT: %Core.ImplicitAs: %ImplicitAs.type.cc7 = import_ref Core//prelude/parts/as, ImplicitAs, loaded [concrete = constants.%ImplicitAs.generic]
  391. // CHECK:STDOUT: %Core.Destroy: type = import_ref Core//prelude/parts/destroy, Destroy, loaded [concrete = constants.%Destroy.type]
  392. // CHECK:STDOUT: %Core.Int: %Int.type = import_ref Core//prelude/parts/int, Int, loaded [concrete = constants.%Int.generic]
  393. // CHECK:STDOUT: }
  394. // CHECK:STDOUT:
  395. // CHECK:STDOUT: file {
  396. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  397. // CHECK:STDOUT: .Core = imports.%Core
  398. // CHECK:STDOUT: .I = %I.decl
  399. // CHECK:STDOUT: .NoF = %NoF.decl
  400. // CHECK:STDOUT: .FNotFunction = %FNotFunction.decl
  401. // CHECK:STDOUT: .PossiblyF = %PossiblyF.decl
  402. // CHECK:STDOUT: .FAlias = %FAlias.decl
  403. // CHECK:STDOUT: .FExtraParam = %FExtraParam.decl
  404. // CHECK:STDOUT: .FExtraImplicitParam = %FExtraImplicitParam.decl
  405. // CHECK:STDOUT: .FExtraReturnType = %FExtraReturnType.decl
  406. // CHECK:STDOUT: .J = %J.decl
  407. // CHECK:STDOUT: .FMissingParam = %FMissingParam.decl
  408. // CHECK:STDOUT: .FMissingImplicitParam = %FMissingImplicitParam.decl
  409. // CHECK:STDOUT: .FMissingReturnType = %FMissingReturnType.decl
  410. // CHECK:STDOUT: .FDifferentParamType = %FDifferentParamType.decl
  411. // CHECK:STDOUT: .FDifferentImplicitParamType = %FDifferentImplicitParamType.decl
  412. // CHECK:STDOUT: .FDifferentReturnType = %FDifferentReturnType.decl
  413. // CHECK:STDOUT: .SelfNested = %SelfNested.decl
  414. // CHECK:STDOUT: .SelfNestedBadParam = %SelfNestedBadParam.decl
  415. // CHECK:STDOUT: .SelfNestedBadReturnType = %SelfNestedBadReturnType.decl
  416. // CHECK:STDOUT: }
  417. // CHECK:STDOUT: %Core.import = import Core
  418. // CHECK:STDOUT: %I.decl: type = interface_decl @I [concrete = constants.%I.type] {} {}
  419. // CHECK:STDOUT: %NoF.decl: type = class_decl @NoF [concrete = constants.%NoF] {} {}
  420. // CHECK:STDOUT: %FNotFunction.decl: type = class_decl @FNotFunction [concrete = constants.%FNotFunction] {} {}
  421. // CHECK:STDOUT: %PossiblyF.decl: %PossiblyF.type = fn_decl @PossiblyF [concrete = constants.%PossiblyF] {} {}
  422. // CHECK:STDOUT: %FAlias.decl: type = class_decl @FAlias [concrete = constants.%FAlias] {} {}
  423. // CHECK:STDOUT: %FExtraParam.decl: type = class_decl @FExtraParam [concrete = constants.%FExtraParam] {} {}
  424. // CHECK:STDOUT: %FExtraImplicitParam.decl: type = class_decl @FExtraImplicitParam [concrete = constants.%FExtraImplicitParam] {} {}
  425. // CHECK:STDOUT: %FExtraReturnType.decl: type = class_decl @FExtraReturnType [concrete = constants.%FExtraReturnType] {} {}
  426. // CHECK:STDOUT: %J.decl: type = interface_decl @J [concrete = constants.%J.type] {} {}
  427. // CHECK:STDOUT: %FMissingParam.decl: type = class_decl @FMissingParam [concrete = constants.%FMissingParam] {} {}
  428. // CHECK:STDOUT: %FMissingImplicitParam.decl: type = class_decl @FMissingImplicitParam [concrete = constants.%FMissingImplicitParam] {} {}
  429. // CHECK:STDOUT: %FMissingReturnType.decl: type = class_decl @FMissingReturnType [concrete = constants.%FMissingReturnType] {} {}
  430. // CHECK:STDOUT: %FDifferentParamType.decl: type = class_decl @FDifferentParamType [concrete = constants.%FDifferentParamType] {} {}
  431. // CHECK:STDOUT: %FDifferentImplicitParamType.decl: type = class_decl @FDifferentImplicitParamType [concrete = constants.%FDifferentImplicitParamType] {} {}
  432. // CHECK:STDOUT: %FDifferentReturnType.decl: type = class_decl @FDifferentReturnType [concrete = constants.%FDifferentReturnType] {} {}
  433. // CHECK:STDOUT: %SelfNested.decl: type = interface_decl @SelfNested [concrete = constants.%SelfNested.type] {} {}
  434. // CHECK:STDOUT: %SelfNestedBadParam.decl: type = class_decl @SelfNestedBadParam [concrete = constants.%SelfNestedBadParam] {} {}
  435. // CHECK:STDOUT: %SelfNestedBadReturnType.decl: type = class_decl @SelfNestedBadReturnType [concrete = constants.%SelfNestedBadReturnType] {} {}
  436. // CHECK:STDOUT: }
  437. // CHECK:STDOUT:
  438. // CHECK:STDOUT: interface @I {
  439. // CHECK:STDOUT: %Self: %I.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.826]
  440. // CHECK:STDOUT: %F.decl: %F.type.cf0 = fn_decl @F.loc15 [concrete = constants.%F.bc6] {} {}
  441. // CHECK:STDOUT: %assoc0: %I.assoc_type = assoc_entity element0, %F.decl [concrete = constants.%assoc0.82e]
  442. // CHECK:STDOUT:
  443. // CHECK:STDOUT: !members:
  444. // CHECK:STDOUT: .Self = %Self
  445. // CHECK:STDOUT: .F = %assoc0
  446. // CHECK:STDOUT: witness = (%F.decl)
  447. // CHECK:STDOUT: }
  448. // CHECK:STDOUT:
  449. // CHECK:STDOUT: interface @J {
  450. // CHECK:STDOUT: %Self: %J.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.ccd]
  451. // CHECK:STDOUT: %F.decl: %F.type.c14 = fn_decl @F.loc103 [concrete = constants.%F.b71] {
  452. // CHECK:STDOUT: %self.patt: %pattern_type.831 = binding_pattern self [concrete]
  453. // CHECK:STDOUT: %self.param_patt: %pattern_type.831 = value_param_pattern %self.patt, call_param0 [concrete]
  454. // CHECK:STDOUT: %b.patt: %pattern_type.831 = binding_pattern b [concrete]
  455. // CHECK:STDOUT: %b.param_patt: %pattern_type.831 = value_param_pattern %b.patt, call_param1 [concrete]
  456. // CHECK:STDOUT: %return.patt: %pattern_type.831 = return_slot_pattern [concrete]
  457. // CHECK:STDOUT: %return.param_patt: %pattern_type.831 = out_param_pattern %return.patt, call_param2 [concrete]
  458. // CHECK:STDOUT: } {
  459. // CHECK:STDOUT: %bool.make_type.loc103_44: init type = call constants.%Bool() [concrete = bool]
  460. // CHECK:STDOUT: %.loc103_44.1: type = value_of_initializer %bool.make_type.loc103_44 [concrete = bool]
  461. // CHECK:STDOUT: %.loc103_44.2: type = converted %bool.make_type.loc103_44, %.loc103_44.1 [concrete = bool]
  462. // CHECK:STDOUT: %self.param: bool = value_param call_param0
  463. // CHECK:STDOUT: %.loc103_26.1: type = splice_block %.loc103_26.3 [concrete = bool] {
  464. // CHECK:STDOUT: %bool.make_type.loc103_26: init type = call constants.%Bool() [concrete = bool]
  465. // CHECK:STDOUT: %.loc103_26.2: type = value_of_initializer %bool.make_type.loc103_26 [concrete = bool]
  466. // CHECK:STDOUT: %.loc103_26.3: type = converted %bool.make_type.loc103_26, %.loc103_26.2 [concrete = bool]
  467. // CHECK:STDOUT: }
  468. // CHECK:STDOUT: %self: bool = bind_name self, %self.param
  469. // CHECK:STDOUT: %b.param: bool = value_param call_param1
  470. // CHECK:STDOUT: %.loc103_35.1: type = splice_block %.loc103_35.3 [concrete = bool] {
  471. // CHECK:STDOUT: %bool.make_type.loc103_35: init type = call constants.%Bool() [concrete = bool]
  472. // CHECK:STDOUT: %.loc103_35.2: type = value_of_initializer %bool.make_type.loc103_35 [concrete = bool]
  473. // CHECK:STDOUT: %.loc103_35.3: type = converted %bool.make_type.loc103_35, %.loc103_35.2 [concrete = bool]
  474. // CHECK:STDOUT: }
  475. // CHECK:STDOUT: %b: bool = bind_name b, %b.param
  476. // CHECK:STDOUT: %return.param: ref bool = out_param call_param2
  477. // CHECK:STDOUT: %return: ref bool = return_slot %return.param
  478. // CHECK:STDOUT: }
  479. // CHECK:STDOUT: %assoc0: %J.assoc_type = assoc_entity element0, %F.decl [concrete = constants.%assoc0.922]
  480. // CHECK:STDOUT:
  481. // CHECK:STDOUT: !members:
  482. // CHECK:STDOUT: .Self = %Self
  483. // CHECK:STDOUT: .F = %assoc0
  484. // CHECK:STDOUT: witness = (%F.decl)
  485. // CHECK:STDOUT: }
  486. // CHECK:STDOUT:
  487. // CHECK:STDOUT: interface @SelfNested {
  488. // CHECK:STDOUT: %Self: %SelfNested.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.2ff]
  489. // CHECK:STDOUT: %F.decl: %F.type.6ed = fn_decl @F.loc211 [concrete = constants.%F.998] {
  490. // CHECK:STDOUT: %x.patt: @F.loc211.%pattern_type.loc211_8 (%pattern_type.ced) = binding_pattern x [concrete]
  491. // CHECK:STDOUT: %x.param_patt: @F.loc211.%pattern_type.loc211_8 (%pattern_type.ced) = value_param_pattern %x.patt, call_param0 [concrete]
  492. // CHECK:STDOUT: %return.patt: @F.loc211.%pattern_type.loc211_41 (%pattern_type.c7e) = return_slot_pattern [concrete]
  493. // CHECK:STDOUT: %return.param_patt: @F.loc211.%pattern_type.loc211_41 (%pattern_type.c7e) = out_param_pattern %return.patt, call_param1 [concrete]
  494. // CHECK:STDOUT: } {
  495. // CHECK:STDOUT: %Self.ref.loc211_50: %SelfNested.type = name_ref Self, @SelfNested.%Self [symbolic = %Self (constants.%Self.2ff)]
  496. // CHECK:STDOUT: %int_4: Core.IntLiteral = int_value 4 [concrete = constants.%int_4]
  497. // CHECK:STDOUT: %Self.as_type.loc211_50: type = facet_access_type %Self.ref.loc211_50 [symbolic = %Self.as_type.loc211_16.1 (constants.%Self.as_type.e1e)]
  498. // CHECK:STDOUT: %.loc211_50: type = converted %Self.ref.loc211_50, %Self.as_type.loc211_50 [symbolic = %Self.as_type.loc211_16.1 (constants.%Self.as_type.e1e)]
  499. // CHECK:STDOUT: %array_type.loc211_57.2: type = array_type %int_4, %.loc211_50 [symbolic = %array_type.loc211_57.1 (constants.%array_type.873)]
  500. // CHECK:STDOUT: %x.param: @F.loc211.%tuple.type (%tuple.type.229) = value_param call_param0
  501. // CHECK:STDOUT: %.loc211_38.1: type = splice_block %.loc211_38.3 [symbolic = %tuple.type (constants.%tuple.type.229)] {
  502. // CHECK:STDOUT: %Self.ref.loc211_12: %SelfNested.type = name_ref Self, @SelfNested.%Self [symbolic = %Self (constants.%Self.2ff)]
  503. // CHECK:STDOUT: %Self.as_type.loc211_16.2: type = facet_access_type %Self.ref.loc211_12 [symbolic = %Self.as_type.loc211_16.1 (constants.%Self.as_type.e1e)]
  504. // CHECK:STDOUT: %.loc211_16: type = converted %Self.ref.loc211_12, %Self.as_type.loc211_16.2 [symbolic = %Self.as_type.loc211_16.1 (constants.%Self.as_type.e1e)]
  505. // CHECK:STDOUT: %ptr.loc211_16.2: type = ptr_type %.loc211_16 [symbolic = %ptr.loc211_16.1 (constants.%ptr.e87)]
  506. // CHECK:STDOUT: %Self.ref.loc211_24: %SelfNested.type = name_ref Self, @SelfNested.%Self [symbolic = %Self (constants.%Self.2ff)]
  507. // CHECK:STDOUT: %Self.as_type.loc211_24: type = facet_access_type %Self.ref.loc211_24 [symbolic = %Self.as_type.loc211_16.1 (constants.%Self.as_type.e1e)]
  508. // CHECK:STDOUT: %.loc211_24: type = converted %Self.ref.loc211_24, %Self.as_type.loc211_24 [symbolic = %Self.as_type.loc211_16.1 (constants.%Self.as_type.e1e)]
  509. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  510. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  511. // CHECK:STDOUT: %struct_type.x.y.loc211_37.2: type = struct_type {.x: @F.loc211.%Self.as_type.loc211_16.1 (%Self.as_type.e1e), .y: %i32} [symbolic = %struct_type.x.y.loc211_37.1 (constants.%struct_type.x.y.81e)]
  512. // CHECK:STDOUT: %.loc211_38.2: %tuple.type.24b = tuple_literal (%ptr.loc211_16.2, %struct_type.x.y.loc211_37.2)
  513. // CHECK:STDOUT: %.loc211_38.3: type = converted %.loc211_38.2, constants.%tuple.type.229 [symbolic = %tuple.type (constants.%tuple.type.229)]
  514. // CHECK:STDOUT: }
  515. // CHECK:STDOUT: %x: @F.loc211.%tuple.type (%tuple.type.229) = bind_name x, %x.param
  516. // CHECK:STDOUT: %return.param: ref @F.loc211.%array_type.loc211_57.1 (%array_type.873) = out_param call_param1
  517. // CHECK:STDOUT: %return: ref @F.loc211.%array_type.loc211_57.1 (%array_type.873) = return_slot %return.param
  518. // CHECK:STDOUT: }
  519. // CHECK:STDOUT: %assoc0: %SelfNested.assoc_type = assoc_entity element0, %F.decl [concrete = constants.%assoc0.beb]
  520. // CHECK:STDOUT:
  521. // CHECK:STDOUT: !members:
  522. // CHECK:STDOUT: .Self = %Self
  523. // CHECK:STDOUT: .F = %assoc0
  524. // CHECK:STDOUT: witness = (%F.decl)
  525. // CHECK:STDOUT: }
  526. // CHECK:STDOUT:
  527. // CHECK:STDOUT: impl @I.impl.0c9: %Self.ref as %I.ref {
  528. // CHECK:STDOUT: !members:
  529. // CHECK:STDOUT: .F = <poisoned>
  530. // CHECK:STDOUT: witness = @NoF.%I.impl_witness
  531. // CHECK:STDOUT: }
  532. // CHECK:STDOUT:
  533. // CHECK:STDOUT: impl @I.impl.b55: %Self.ref as %I.ref {
  534. // CHECK:STDOUT: %F.decl: type = class_decl @F.loc37 [concrete = constants.%F.70c] {} {}
  535. // CHECK:STDOUT:
  536. // CHECK:STDOUT: !members:
  537. // CHECK:STDOUT: .F = %F.decl
  538. // CHECK:STDOUT: witness = @FNotFunction.%I.impl_witness
  539. // CHECK:STDOUT: }
  540. // CHECK:STDOUT:
  541. // CHECK:STDOUT: impl @I.impl.199: %Self.ref as %I.ref {
  542. // CHECK:STDOUT: %PossiblyF.ref: %PossiblyF.type = name_ref PossiblyF, file.%PossiblyF.decl [concrete = constants.%PossiblyF]
  543. // CHECK:STDOUT: %F: %PossiblyF.type = bind_alias F, file.%PossiblyF.decl [concrete = constants.%PossiblyF]
  544. // CHECK:STDOUT:
  545. // CHECK:STDOUT: !members:
  546. // CHECK:STDOUT: .PossiblyF = <poisoned>
  547. // CHECK:STDOUT: .F = %F
  548. // CHECK:STDOUT: witness = @FAlias.%I.impl_witness
  549. // CHECK:STDOUT: }
  550. // CHECK:STDOUT:
  551. // CHECK:STDOUT: impl @I.impl.ddd: %Self.ref as %I.ref {
  552. // CHECK:STDOUT: %F.decl.loc69_18.1: %F.type.44ef8c.1 = fn_decl @F.loc69_18.1 [concrete = constants.%F.424e9e.1] {
  553. // CHECK:STDOUT: %b.patt: %pattern_type.831 = binding_pattern b [concrete]
  554. // CHECK:STDOUT: %b.param_patt: %pattern_type.831 = value_param_pattern %b.patt, call_param0 [concrete]
  555. // CHECK:STDOUT: } {
  556. // CHECK:STDOUT: %b.param: bool = value_param call_param0
  557. // CHECK:STDOUT: %.loc69_13.1: type = splice_block %.loc69_13.3 [concrete = bool] {
  558. // CHECK:STDOUT: %bool.make_type: init type = call constants.%Bool() [concrete = bool]
  559. // CHECK:STDOUT: %.loc69_13.2: type = value_of_initializer %bool.make_type [concrete = bool]
  560. // CHECK:STDOUT: %.loc69_13.3: type = converted %bool.make_type, %.loc69_13.2 [concrete = bool]
  561. // CHECK:STDOUT: }
  562. // CHECK:STDOUT: %b: bool = bind_name b, %b.param
  563. // CHECK:STDOUT: }
  564. // CHECK:STDOUT: %F.decl.loc69_18.2: %F.type.44ef8c.2 = fn_decl @F.loc69_18.2 [concrete = constants.%F.424e9e.2] {} {}
  565. // CHECK:STDOUT:
  566. // CHECK:STDOUT: !members:
  567. // CHECK:STDOUT: .F = %F.decl.loc69_18.1
  568. // CHECK:STDOUT: witness = @FExtraParam.%I.impl_witness
  569. // CHECK:STDOUT: }
  570. // CHECK:STDOUT:
  571. // CHECK:STDOUT: impl @I.impl.698: %Self.ref as %I.ref {
  572. // CHECK:STDOUT: %F.decl.loc85_23.1: %F.type.e1abdd.1 = fn_decl @F.loc85_23.1 [concrete = constants.%F.6ff574.1] {
  573. // CHECK:STDOUT: %self.patt: %pattern_type.8ae = binding_pattern self [concrete]
  574. // CHECK:STDOUT: %self.param_patt: %pattern_type.8ae = value_param_pattern %self.patt, call_param0 [concrete]
  575. // CHECK:STDOUT: } {
  576. // CHECK:STDOUT: %self.param: %FExtraImplicitParam = value_param call_param0
  577. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FExtraImplicitParam [concrete = constants.%FExtraImplicitParam]
  578. // CHECK:STDOUT: %self: %FExtraImplicitParam = bind_name self, %self.param
  579. // CHECK:STDOUT: }
  580. // CHECK:STDOUT: %F.decl.loc85_23.2: %F.type.e1abdd.2 = fn_decl @F.loc85_23.2 [concrete = constants.%F.6ff574.2] {} {}
  581. // CHECK:STDOUT:
  582. // CHECK:STDOUT: !members:
  583. // CHECK:STDOUT: .F = %F.decl.loc85_23.1
  584. // CHECK:STDOUT: witness = @FExtraImplicitParam.%I.impl_witness
  585. // CHECK:STDOUT: }
  586. // CHECK:STDOUT:
  587. // CHECK:STDOUT: impl @I.impl.77b: %Self.ref as %I.ref {
  588. // CHECK:STDOUT: %F.decl: %F.type.387 = fn_decl @F.loc99 [concrete = constants.%F.df5] {
  589. // CHECK:STDOUT: %return.patt: %pattern_type.831 = return_slot_pattern [concrete]
  590. // CHECK:STDOUT: %return.param_patt: %pattern_type.831 = out_param_pattern %return.patt, call_param0 [concrete]
  591. // CHECK:STDOUT: } {
  592. // CHECK:STDOUT: %bool.make_type: init type = call constants.%Bool() [concrete = bool]
  593. // CHECK:STDOUT: %.loc99_15.1: type = value_of_initializer %bool.make_type [concrete = bool]
  594. // CHECK:STDOUT: %.loc99_15.2: type = converted %bool.make_type, %.loc99_15.1 [concrete = bool]
  595. // CHECK:STDOUT: %return.param: ref bool = out_param call_param0
  596. // CHECK:STDOUT: %return: ref bool = return_slot %return.param
  597. // CHECK:STDOUT: }
  598. // CHECK:STDOUT:
  599. // CHECK:STDOUT: !members:
  600. // CHECK:STDOUT: .F = %F.decl
  601. // CHECK:STDOUT: witness = @FExtraReturnType.%I.impl_witness
  602. // CHECK:STDOUT: }
  603. // CHECK:STDOUT:
  604. // CHECK:STDOUT: impl @J.impl.5cf: %Self.ref as %J.ref {
  605. // CHECK:STDOUT: %F.decl.loc117_31.1: %F.type.69596c.1 = fn_decl @F.loc117_31.1 [concrete = constants.%F.738f31.1] {
  606. // CHECK:STDOUT: %self.patt: %pattern_type.831 = binding_pattern self [concrete]
  607. // CHECK:STDOUT: %self.param_patt: %pattern_type.831 = value_param_pattern %self.patt, call_param0 [concrete]
  608. // CHECK:STDOUT: %return.patt: %pattern_type.831 = return_slot_pattern [concrete]
  609. // CHECK:STDOUT: %return.param_patt: %pattern_type.831 = out_param_pattern %return.patt, call_param1 [concrete]
  610. // CHECK:STDOUT: } {
  611. // CHECK:STDOUT: %bool.make_type.loc117_27: init type = call constants.%Bool() [concrete = bool]
  612. // CHECK:STDOUT: %.loc117_27.1: type = value_of_initializer %bool.make_type.loc117_27 [concrete = bool]
  613. // CHECK:STDOUT: %.loc117_27.2: type = converted %bool.make_type.loc117_27, %.loc117_27.1 [concrete = bool]
  614. // CHECK:STDOUT: %self.param: bool = value_param call_param0
  615. // CHECK:STDOUT: %.loc117_16.1: type = splice_block %.loc117_16.3 [concrete = bool] {
  616. // CHECK:STDOUT: %bool.make_type.loc117_16: init type = call constants.%Bool() [concrete = bool]
  617. // CHECK:STDOUT: %.loc117_16.2: type = value_of_initializer %bool.make_type.loc117_16 [concrete = bool]
  618. // CHECK:STDOUT: %.loc117_16.3: type = converted %bool.make_type.loc117_16, %.loc117_16.2 [concrete = bool]
  619. // CHECK:STDOUT: }
  620. // CHECK:STDOUT: %self: bool = bind_name self, %self.param
  621. // CHECK:STDOUT: %return.param: ref bool = out_param call_param1
  622. // CHECK:STDOUT: %return: ref bool = return_slot %return.param
  623. // CHECK:STDOUT: }
  624. // CHECK:STDOUT: %F.decl.loc117_31.2: %F.type.69596c.2 = fn_decl @F.loc117_31.2 [concrete = constants.%F.738f31.2] {
  625. // CHECK:STDOUT: %self.patt: %pattern_type.831 = binding_pattern self [concrete]
  626. // CHECK:STDOUT: %self.param_patt: %pattern_type.831 = value_param_pattern %self.patt, call_param0 [concrete]
  627. // CHECK:STDOUT: %b.patt: %pattern_type.831 = binding_pattern b [concrete]
  628. // CHECK:STDOUT: %b.param_patt: %pattern_type.831 = value_param_pattern %b.patt, call_param1 [concrete]
  629. // CHECK:STDOUT: %return.patt: %pattern_type.831 = return_slot_pattern [concrete]
  630. // CHECK:STDOUT: %return.param_patt: %pattern_type.831 = out_param_pattern %return.patt, call_param2 [concrete]
  631. // CHECK:STDOUT: } {
  632. // CHECK:STDOUT: %self.param: bool = value_param call_param0
  633. // CHECK:STDOUT: %self: bool = bind_name self, %self.param
  634. // CHECK:STDOUT: %b.param: bool = value_param call_param1
  635. // CHECK:STDOUT: %b: bool = bind_name b, %b.param
  636. // CHECK:STDOUT: %return.param: ref bool = out_param call_param2
  637. // CHECK:STDOUT: %return: ref bool = return_slot %return.param
  638. // CHECK:STDOUT: }
  639. // CHECK:STDOUT:
  640. // CHECK:STDOUT: !members:
  641. // CHECK:STDOUT: .F = %F.decl.loc117_31.1
  642. // CHECK:STDOUT: witness = @FMissingParam.%J.impl_witness
  643. // CHECK:STDOUT: }
  644. // CHECK:STDOUT:
  645. // CHECK:STDOUT: impl @J.impl.bac: %Self.ref as %J.ref {
  646. // CHECK:STDOUT: %F.decl.loc130_26.1: %F.type.d97cef.1 = fn_decl @F.loc130_26.1 [concrete = constants.%F.01de92.1] {
  647. // CHECK:STDOUT: %b.patt: %pattern_type.831 = binding_pattern b [concrete]
  648. // CHECK:STDOUT: %b.param_patt: %pattern_type.831 = value_param_pattern %b.patt, call_param0 [concrete]
  649. // CHECK:STDOUT: %return.patt: %pattern_type.831 = return_slot_pattern [concrete]
  650. // CHECK:STDOUT: %return.param_patt: %pattern_type.831 = out_param_pattern %return.patt, call_param1 [concrete]
  651. // CHECK:STDOUT: } {
  652. // CHECK:STDOUT: %bool.make_type.loc130_22: init type = call constants.%Bool() [concrete = bool]
  653. // CHECK:STDOUT: %.loc130_22.1: type = value_of_initializer %bool.make_type.loc130_22 [concrete = bool]
  654. // CHECK:STDOUT: %.loc130_22.2: type = converted %bool.make_type.loc130_22, %.loc130_22.1 [concrete = bool]
  655. // CHECK:STDOUT: %b.param: bool = value_param call_param0
  656. // CHECK:STDOUT: %.loc130_13.1: type = splice_block %.loc130_13.3 [concrete = bool] {
  657. // CHECK:STDOUT: %bool.make_type.loc130_13: init type = call constants.%Bool() [concrete = bool]
  658. // CHECK:STDOUT: %.loc130_13.2: type = value_of_initializer %bool.make_type.loc130_13 [concrete = bool]
  659. // CHECK:STDOUT: %.loc130_13.3: type = converted %bool.make_type.loc130_13, %.loc130_13.2 [concrete = bool]
  660. // CHECK:STDOUT: }
  661. // CHECK:STDOUT: %b: bool = bind_name b, %b.param
  662. // CHECK:STDOUT: %return.param: ref bool = out_param call_param1
  663. // CHECK:STDOUT: %return: ref bool = return_slot %return.param
  664. // CHECK:STDOUT: }
  665. // CHECK:STDOUT: %F.decl.loc130_26.2: %F.type.d97cef.2 = fn_decl @F.loc130_26.2 [concrete = constants.%F.01de92.2] {
  666. // CHECK:STDOUT: %self.patt: %pattern_type.831 = binding_pattern self [concrete]
  667. // CHECK:STDOUT: %self.param_patt: %pattern_type.831 = value_param_pattern %self.patt, call_param0 [concrete]
  668. // CHECK:STDOUT: %b.patt: %pattern_type.831 = binding_pattern b [concrete]
  669. // CHECK:STDOUT: %b.param_patt: %pattern_type.831 = value_param_pattern %b.patt, call_param1 [concrete]
  670. // CHECK:STDOUT: %return.patt: %pattern_type.831 = return_slot_pattern [concrete]
  671. // CHECK:STDOUT: %return.param_patt: %pattern_type.831 = out_param_pattern %return.patt, call_param2 [concrete]
  672. // CHECK:STDOUT: } {
  673. // CHECK:STDOUT: %self.param: bool = value_param call_param0
  674. // CHECK:STDOUT: %self: bool = bind_name self, %self.param
  675. // CHECK:STDOUT: %b.param: bool = value_param call_param1
  676. // CHECK:STDOUT: %b: bool = bind_name b, %b.param
  677. // CHECK:STDOUT: %return.param: ref bool = out_param call_param2
  678. // CHECK:STDOUT: %return: ref bool = return_slot %return.param
  679. // CHECK:STDOUT: }
  680. // CHECK:STDOUT:
  681. // CHECK:STDOUT: !members:
  682. // CHECK:STDOUT: .F = %F.decl.loc130_26.1
  683. // CHECK:STDOUT: witness = @FMissingImplicitParam.%J.impl_witness
  684. // CHECK:STDOUT: }
  685. // CHECK:STDOUT:
  686. // CHECK:STDOUT: impl @J.impl.1a7: %Self.ref as %J.ref {
  687. // CHECK:STDOUT: %F.decl.loc152_30.1: %F.type.123d7a.1 = fn_decl @F.loc152_30.1 [concrete = constants.%F.c7d02d.1] {
  688. // CHECK:STDOUT: %self.patt: %pattern_type.831 = binding_pattern self [concrete]
  689. // CHECK:STDOUT: %self.param_patt: %pattern_type.831 = value_param_pattern %self.patt, call_param0 [concrete]
  690. // CHECK:STDOUT: %b.patt: %pattern_type.831 = binding_pattern b [concrete]
  691. // CHECK:STDOUT: %b.param_patt: %pattern_type.831 = value_param_pattern %b.patt, call_param1 [concrete]
  692. // CHECK:STDOUT: } {
  693. // CHECK:STDOUT: %self.param: bool = value_param call_param0
  694. // CHECK:STDOUT: %.loc152_16.1: type = splice_block %.loc152_16.3 [concrete = bool] {
  695. // CHECK:STDOUT: %bool.make_type.loc152_16: init type = call constants.%Bool() [concrete = bool]
  696. // CHECK:STDOUT: %.loc152_16.2: type = value_of_initializer %bool.make_type.loc152_16 [concrete = bool]
  697. // CHECK:STDOUT: %.loc152_16.3: type = converted %bool.make_type.loc152_16, %.loc152_16.2 [concrete = bool]
  698. // CHECK:STDOUT: }
  699. // CHECK:STDOUT: %self: bool = bind_name self, %self.param
  700. // CHECK:STDOUT: %b.param: bool = value_param call_param1
  701. // CHECK:STDOUT: %.loc152_25.1: type = splice_block %.loc152_25.3 [concrete = bool] {
  702. // CHECK:STDOUT: %bool.make_type.loc152_25: init type = call constants.%Bool() [concrete = bool]
  703. // CHECK:STDOUT: %.loc152_25.2: type = value_of_initializer %bool.make_type.loc152_25 [concrete = bool]
  704. // CHECK:STDOUT: %.loc152_25.3: type = converted %bool.make_type.loc152_25, %.loc152_25.2 [concrete = bool]
  705. // CHECK:STDOUT: }
  706. // CHECK:STDOUT: %b: bool = bind_name b, %b.param
  707. // CHECK:STDOUT: }
  708. // CHECK:STDOUT: %F.decl.loc152_30.2: %F.type.123d7a.2 = fn_decl @F.loc152_30.2 [concrete = constants.%F.c7d02d.2] {
  709. // CHECK:STDOUT: %self.patt: %pattern_type.831 = binding_pattern self [concrete]
  710. // CHECK:STDOUT: %self.param_patt: %pattern_type.831 = value_param_pattern %self.patt, call_param0 [concrete]
  711. // CHECK:STDOUT: %b.patt: %pattern_type.831 = binding_pattern b [concrete]
  712. // CHECK:STDOUT: %b.param_patt: %pattern_type.831 = value_param_pattern %b.patt, call_param1 [concrete]
  713. // CHECK:STDOUT: %return.patt: %pattern_type.831 = return_slot_pattern [concrete]
  714. // CHECK:STDOUT: %return.param_patt: %pattern_type.831 = out_param_pattern %return.patt, call_param2 [concrete]
  715. // CHECK:STDOUT: } {
  716. // CHECK:STDOUT: %self.param: bool = value_param call_param0
  717. // CHECK:STDOUT: %self: bool = bind_name self, %self.param
  718. // CHECK:STDOUT: %b.param: bool = value_param call_param1
  719. // CHECK:STDOUT: %b: bool = bind_name b, %b.param
  720. // CHECK:STDOUT: %return.param: ref bool = out_param call_param2
  721. // CHECK:STDOUT: %return: ref bool = return_slot %return.param
  722. // CHECK:STDOUT: }
  723. // CHECK:STDOUT:
  724. // CHECK:STDOUT: !members:
  725. // CHECK:STDOUT: .F = %F.decl.loc152_30.1
  726. // CHECK:STDOUT: witness = @FMissingReturnType.%J.impl_witness
  727. // CHECK:STDOUT: }
  728. // CHECK:STDOUT:
  729. // CHECK:STDOUT: impl @J.impl.f2b: %Self.ref as %J.ref {
  730. // CHECK:STDOUT: %F.decl.loc171_38.1: %F.type.6b537d.1 = fn_decl @F.loc171_38.1 [concrete = constants.%F.04313a.1] {
  731. // CHECK:STDOUT: %self.patt: %pattern_type.831 = binding_pattern self [concrete]
  732. // CHECK:STDOUT: %self.param_patt: %pattern_type.831 = value_param_pattern %self.patt, call_param0 [concrete]
  733. // CHECK:STDOUT: %b.patt: %pattern_type.b90 = binding_pattern b [concrete]
  734. // CHECK:STDOUT: %b.param_patt: %pattern_type.b90 = value_param_pattern %b.patt, call_param1 [concrete]
  735. // CHECK:STDOUT: %return.patt: %pattern_type.831 = return_slot_pattern [concrete]
  736. // CHECK:STDOUT: %return.param_patt: %pattern_type.831 = out_param_pattern %return.patt, call_param2 [concrete]
  737. // CHECK:STDOUT: } {
  738. // CHECK:STDOUT: %bool.make_type.loc171_34: init type = call constants.%Bool() [concrete = bool]
  739. // CHECK:STDOUT: %.loc171_34.1: type = value_of_initializer %bool.make_type.loc171_34 [concrete = bool]
  740. // CHECK:STDOUT: %.loc171_34.2: type = converted %bool.make_type.loc171_34, %.loc171_34.1 [concrete = bool]
  741. // CHECK:STDOUT: %self.param: bool = value_param call_param0
  742. // CHECK:STDOUT: %.loc171_16.1: type = splice_block %.loc171_16.3 [concrete = bool] {
  743. // CHECK:STDOUT: %bool.make_type.loc171_16: init type = call constants.%Bool() [concrete = bool]
  744. // CHECK:STDOUT: %.loc171_16.2: type = value_of_initializer %bool.make_type.loc171_16 [concrete = bool]
  745. // CHECK:STDOUT: %.loc171_16.3: type = converted %bool.make_type.loc171_16, %.loc171_16.2 [concrete = bool]
  746. // CHECK:STDOUT: }
  747. // CHECK:STDOUT: %self: bool = bind_name self, %self.param
  748. // CHECK:STDOUT: %b.param: %FDifferentParamType = value_param call_param1
  749. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FDifferentParamType [concrete = constants.%FDifferentParamType]
  750. // CHECK:STDOUT: %b: %FDifferentParamType = bind_name b, %b.param
  751. // CHECK:STDOUT: %return.param: ref bool = out_param call_param2
  752. // CHECK:STDOUT: %return: ref bool = return_slot %return.param
  753. // CHECK:STDOUT: }
  754. // CHECK:STDOUT: %F.decl.loc171_38.2: %F.type.6b537d.2 = fn_decl @F.loc171_38.2 [concrete = constants.%F.04313a.2] {
  755. // CHECK:STDOUT: %self.patt: %pattern_type.831 = binding_pattern self [concrete]
  756. // CHECK:STDOUT: %self.param_patt: %pattern_type.831 = value_param_pattern %self.patt, call_param0 [concrete]
  757. // CHECK:STDOUT: %b.patt: %pattern_type.831 = binding_pattern b [concrete]
  758. // CHECK:STDOUT: %b.param_patt: %pattern_type.831 = value_param_pattern %b.patt, call_param1 [concrete]
  759. // CHECK:STDOUT: %return.patt: %pattern_type.831 = return_slot_pattern [concrete]
  760. // CHECK:STDOUT: %return.param_patt: %pattern_type.831 = out_param_pattern %return.patt, call_param2 [concrete]
  761. // CHECK:STDOUT: } {
  762. // CHECK:STDOUT: %self.param: bool = value_param call_param0
  763. // CHECK:STDOUT: %self: bool = bind_name self, %self.param
  764. // CHECK:STDOUT: %b.param: bool = value_param call_param1
  765. // CHECK:STDOUT: %b: bool = bind_name b, %b.param
  766. // CHECK:STDOUT: %return.param: ref bool = out_param call_param2
  767. // CHECK:STDOUT: %return: ref bool = return_slot %return.param
  768. // CHECK:STDOUT: }
  769. // CHECK:STDOUT:
  770. // CHECK:STDOUT: !members:
  771. // CHECK:STDOUT: .F = %F.decl.loc171_38.1
  772. // CHECK:STDOUT: witness = @FDifferentParamType.%J.impl_witness
  773. // CHECK:STDOUT: }
  774. // CHECK:STDOUT:
  775. // CHECK:STDOUT: impl @J.impl.db4: %Self.ref as %J.ref {
  776. // CHECK:STDOUT: %F.decl.loc184_38.1: %F.type.d6232a.1 = fn_decl @F.loc184_38.1 [concrete = constants.%F.886f70.1] {
  777. // CHECK:STDOUT: %self.patt: %pattern_type.9cc = binding_pattern self [concrete]
  778. // CHECK:STDOUT: %self.param_patt: %pattern_type.9cc = value_param_pattern %self.patt, call_param0 [concrete]
  779. // CHECK:STDOUT: %b.patt: %pattern_type.831 = binding_pattern b [concrete]
  780. // CHECK:STDOUT: %b.param_patt: %pattern_type.831 = value_param_pattern %b.patt, call_param1 [concrete]
  781. // CHECK:STDOUT: %return.patt: %pattern_type.831 = return_slot_pattern [concrete]
  782. // CHECK:STDOUT: %return.param_patt: %pattern_type.831 = out_param_pattern %return.patt, call_param2 [concrete]
  783. // CHECK:STDOUT: } {
  784. // CHECK:STDOUT: %bool.make_type.loc184_34: init type = call constants.%Bool() [concrete = bool]
  785. // CHECK:STDOUT: %.loc184_34.1: type = value_of_initializer %bool.make_type.loc184_34 [concrete = bool]
  786. // CHECK:STDOUT: %.loc184_34.2: type = converted %bool.make_type.loc184_34, %.loc184_34.1 [concrete = bool]
  787. // CHECK:STDOUT: %self.param: %FDifferentImplicitParamType = value_param call_param0
  788. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FDifferentImplicitParamType [concrete = constants.%FDifferentImplicitParamType]
  789. // CHECK:STDOUT: %self: %FDifferentImplicitParamType = bind_name self, %self.param
  790. // CHECK:STDOUT: %b.param: bool = value_param call_param1
  791. // CHECK:STDOUT: %.loc184_25.1: type = splice_block %.loc184_25.3 [concrete = bool] {
  792. // CHECK:STDOUT: %bool.make_type.loc184_25: init type = call constants.%Bool() [concrete = bool]
  793. // CHECK:STDOUT: %.loc184_25.2: type = value_of_initializer %bool.make_type.loc184_25 [concrete = bool]
  794. // CHECK:STDOUT: %.loc184_25.3: type = converted %bool.make_type.loc184_25, %.loc184_25.2 [concrete = bool]
  795. // CHECK:STDOUT: }
  796. // CHECK:STDOUT: %b: bool = bind_name b, %b.param
  797. // CHECK:STDOUT: %return.param: ref bool = out_param call_param2
  798. // CHECK:STDOUT: %return: ref bool = return_slot %return.param
  799. // CHECK:STDOUT: }
  800. // CHECK:STDOUT: %F.decl.loc184_38.2: %F.type.d6232a.2 = fn_decl @F.loc184_38.2 [concrete = constants.%F.886f70.2] {
  801. // CHECK:STDOUT: %self.patt: %pattern_type.831 = binding_pattern self [concrete]
  802. // CHECK:STDOUT: %self.param_patt: %pattern_type.831 = value_param_pattern %self.patt, call_param0 [concrete]
  803. // CHECK:STDOUT: %b.patt: %pattern_type.831 = binding_pattern b [concrete]
  804. // CHECK:STDOUT: %b.param_patt: %pattern_type.831 = value_param_pattern %b.patt, call_param1 [concrete]
  805. // CHECK:STDOUT: %return.patt: %pattern_type.831 = return_slot_pattern [concrete]
  806. // CHECK:STDOUT: %return.param_patt: %pattern_type.831 = out_param_pattern %return.patt, call_param2 [concrete]
  807. // CHECK:STDOUT: } {
  808. // CHECK:STDOUT: %self.param: bool = value_param call_param0
  809. // CHECK:STDOUT: %self: bool = bind_name self, %self.param
  810. // CHECK:STDOUT: %b.param: bool = value_param call_param1
  811. // CHECK:STDOUT: %b: bool = bind_name b, %b.param
  812. // CHECK:STDOUT: %return.param: ref bool = out_param call_param2
  813. // CHECK:STDOUT: %return: ref bool = return_slot %return.param
  814. // CHECK:STDOUT: }
  815. // CHECK:STDOUT:
  816. // CHECK:STDOUT: !members:
  817. // CHECK:STDOUT: .F = %F.decl.loc184_38.1
  818. // CHECK:STDOUT: witness = @FDifferentImplicitParamType.%J.impl_witness
  819. // CHECK:STDOUT: }
  820. // CHECK:STDOUT:
  821. // CHECK:STDOUT: impl @J.impl.fcc: %Self.ref as %J.ref {
  822. // CHECK:STDOUT: %F.decl.loc200_38.1: %F.type.d3b58f.1 = fn_decl @F.loc200_38.1 [concrete = constants.%F.be86c9.1] {
  823. // CHECK:STDOUT: %self.patt: %pattern_type.831 = binding_pattern self [concrete]
  824. // CHECK:STDOUT: %self.param_patt: %pattern_type.831 = value_param_pattern %self.patt, call_param0 [concrete]
  825. // CHECK:STDOUT: %b.patt: %pattern_type.831 = binding_pattern b [concrete]
  826. // CHECK:STDOUT: %b.param_patt: %pattern_type.831 = value_param_pattern %b.patt, call_param1 [concrete]
  827. // CHECK:STDOUT: %return.patt: %pattern_type.8ee = return_slot_pattern [concrete]
  828. // CHECK:STDOUT: %return.param_patt: %pattern_type.8ee = out_param_pattern %return.patt, call_param2 [concrete]
  829. // CHECK:STDOUT: } {
  830. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FDifferentReturnType [concrete = constants.%FDifferentReturnType]
  831. // CHECK:STDOUT: %self.param: bool = value_param call_param0
  832. // CHECK:STDOUT: %.loc200_16.1: type = splice_block %.loc200_16.3 [concrete = bool] {
  833. // CHECK:STDOUT: %bool.make_type.loc200_16: init type = call constants.%Bool() [concrete = bool]
  834. // CHECK:STDOUT: %.loc200_16.2: type = value_of_initializer %bool.make_type.loc200_16 [concrete = bool]
  835. // CHECK:STDOUT: %.loc200_16.3: type = converted %bool.make_type.loc200_16, %.loc200_16.2 [concrete = bool]
  836. // CHECK:STDOUT: }
  837. // CHECK:STDOUT: %self: bool = bind_name self, %self.param
  838. // CHECK:STDOUT: %b.param: bool = value_param call_param1
  839. // CHECK:STDOUT: %.loc200_25.1: type = splice_block %.loc200_25.3 [concrete = bool] {
  840. // CHECK:STDOUT: %bool.make_type.loc200_25: init type = call constants.%Bool() [concrete = bool]
  841. // CHECK:STDOUT: %.loc200_25.2: type = value_of_initializer %bool.make_type.loc200_25 [concrete = bool]
  842. // CHECK:STDOUT: %.loc200_25.3: type = converted %bool.make_type.loc200_25, %.loc200_25.2 [concrete = bool]
  843. // CHECK:STDOUT: }
  844. // CHECK:STDOUT: %b: bool = bind_name b, %b.param
  845. // CHECK:STDOUT: %return.param: ref %FDifferentReturnType = out_param call_param2
  846. // CHECK:STDOUT: %return: ref %FDifferentReturnType = return_slot %return.param
  847. // CHECK:STDOUT: }
  848. // CHECK:STDOUT: %F.decl.loc200_38.2: %F.type.d3b58f.2 = fn_decl @F.loc200_38.2 [concrete = constants.%F.be86c9.2] {
  849. // CHECK:STDOUT: %self.patt: %pattern_type.831 = binding_pattern self [concrete]
  850. // CHECK:STDOUT: %self.param_patt: %pattern_type.831 = value_param_pattern %self.patt, call_param0 [concrete]
  851. // CHECK:STDOUT: %b.patt: %pattern_type.831 = binding_pattern b [concrete]
  852. // CHECK:STDOUT: %b.param_patt: %pattern_type.831 = value_param_pattern %b.patt, call_param1 [concrete]
  853. // CHECK:STDOUT: %return.patt: %pattern_type.831 = return_slot_pattern [concrete]
  854. // CHECK:STDOUT: %return.param_patt: %pattern_type.831 = out_param_pattern %return.patt, call_param2 [concrete]
  855. // CHECK:STDOUT: } {
  856. // CHECK:STDOUT: %self.param: bool = value_param call_param0
  857. // CHECK:STDOUT: %self: bool = bind_name self, %self.param
  858. // CHECK:STDOUT: %b.param: bool = value_param call_param1
  859. // CHECK:STDOUT: %b: bool = bind_name b, %b.param
  860. // CHECK:STDOUT: %return.param: ref bool = out_param call_param2
  861. // CHECK:STDOUT: %return: ref bool = return_slot %return.param
  862. // CHECK:STDOUT: }
  863. // CHECK:STDOUT:
  864. // CHECK:STDOUT: !members:
  865. // CHECK:STDOUT: .F = %F.decl.loc200_38.1
  866. // CHECK:STDOUT: witness = @FDifferentReturnType.%J.impl_witness
  867. // CHECK:STDOUT: }
  868. // CHECK:STDOUT:
  869. // CHECK:STDOUT: impl @SelfNested.impl.6a5: %Self.ref as %SelfNested.ref {
  870. // CHECK:STDOUT: %F.decl.loc223_87.1: %F.type.f90165.1 = fn_decl @F.loc223_87.1 [concrete = constants.%F.fa8d04.1] {
  871. // CHECK:STDOUT: %x.patt: %pattern_type.714 = binding_pattern x [concrete]
  872. // CHECK:STDOUT: %x.param_patt: %pattern_type.714 = value_param_pattern %x.patt, call_param0 [concrete]
  873. // CHECK:STDOUT: %return.patt: %pattern_type.1f1 = return_slot_pattern [concrete]
  874. // CHECK:STDOUT: %return.param_patt: %pattern_type.1f1 = out_param_pattern %return.patt, call_param1 [concrete]
  875. // CHECK:STDOUT: } {
  876. // CHECK:STDOUT: %SelfNestedBadParam.ref.loc223_65: type = name_ref SelfNestedBadParam, file.%SelfNestedBadParam.decl [concrete = constants.%SelfNestedBadParam]
  877. // CHECK:STDOUT: %int_4: Core.IntLiteral = int_value 4 [concrete = constants.%int_4]
  878. // CHECK:STDOUT: %array_type: type = array_type %int_4, %SelfNestedBadParam.ref.loc223_65 [concrete = constants.%array_type.a41]
  879. // CHECK:STDOUT: %x.param: %tuple.type.a7d = value_param call_param0
  880. // CHECK:STDOUT: %.loc223_53.1: type = splice_block %.loc223_53.3 [concrete = constants.%tuple.type.a7d] {
  881. // CHECK:STDOUT: %SelfNestedBadParam.ref.loc223_14: type = name_ref SelfNestedBadParam, file.%SelfNestedBadParam.decl [concrete = constants.%SelfNestedBadParam]
  882. // CHECK:STDOUT: %ptr: type = ptr_type %SelfNestedBadParam.ref.loc223_14 [concrete = constants.%ptr.4cd]
  883. // CHECK:STDOUT: %int_32.loc223_40: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  884. // CHECK:STDOUT: %i32.loc223_40: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  885. // CHECK:STDOUT: %int_32.loc223_49: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  886. // CHECK:STDOUT: %i32.loc223_49: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  887. // CHECK:STDOUT: %struct_type.x.y: type = struct_type {.x: %i32, .y: %i32} [concrete = constants.%struct_type.x.y.871]
  888. // CHECK:STDOUT: %.loc223_53.2: %tuple.type.24b = tuple_literal (%ptr, %struct_type.x.y)
  889. // CHECK:STDOUT: %.loc223_53.3: type = converted %.loc223_53.2, constants.%tuple.type.a7d [concrete = constants.%tuple.type.a7d]
  890. // CHECK:STDOUT: }
  891. // CHECK:STDOUT: %x: %tuple.type.a7d = bind_name x, %x.param
  892. // CHECK:STDOUT: %return.param: ref %array_type.a41 = out_param call_param1
  893. // CHECK:STDOUT: %return: ref %array_type.a41 = return_slot %return.param
  894. // CHECK:STDOUT: }
  895. // CHECK:STDOUT: %F.decl.loc223_87.2: %F.type.f90165.2 = fn_decl @F.loc223_87.2 [concrete = constants.%F.fa8d04.2] {
  896. // CHECK:STDOUT: %x.patt: %pattern_type.a5c = binding_pattern x [concrete]
  897. // CHECK:STDOUT: %x.param_patt: %pattern_type.a5c = value_param_pattern %x.patt, call_param0 [concrete]
  898. // CHECK:STDOUT: %return.patt: %pattern_type.1f1 = return_slot_pattern [concrete]
  899. // CHECK:STDOUT: %return.param_patt: %pattern_type.1f1 = out_param_pattern %return.patt, call_param1 [concrete]
  900. // CHECK:STDOUT: } {
  901. // CHECK:STDOUT: %x.param: %tuple.type.9c9 = value_param call_param0
  902. // CHECK:STDOUT: %x: %tuple.type.9c9 = bind_name x, %x.param
  903. // CHECK:STDOUT: %return.param: ref %array_type.a41 = out_param call_param1
  904. // CHECK:STDOUT: %return: ref %array_type.a41 = return_slot %return.param
  905. // CHECK:STDOUT: }
  906. // CHECK:STDOUT:
  907. // CHECK:STDOUT: !members:
  908. // CHECK:STDOUT: .SelfNestedBadParam = <poisoned>
  909. // CHECK:STDOUT: .F = %F.decl.loc223_87.1
  910. // CHECK:STDOUT: witness = @SelfNestedBadParam.%SelfNested.impl_witness
  911. // CHECK:STDOUT: }
  912. // CHECK:STDOUT:
  913. // CHECK:STDOUT: impl @SelfNested.impl.bfc: %Self.ref as %SelfNested.ref {
  914. // CHECK:STDOUT: %F.decl.loc239_112.1: %F.type.0e7d1d.1 = fn_decl @F.loc239_112.1 [concrete = constants.%F.0bc78a.1] {
  915. // CHECK:STDOUT: %x.patt: %pattern_type.23f = binding_pattern x [concrete]
  916. // CHECK:STDOUT: %x.param_patt: %pattern_type.23f = value_param_pattern %x.patt, call_param0 [concrete]
  917. // CHECK:STDOUT: %return.patt: %pattern_type.1f1 = return_slot_pattern [concrete]
  918. // CHECK:STDOUT: %return.param_patt: %pattern_type.1f1 = out_param_pattern %return.patt, call_param1 [concrete]
  919. // CHECK:STDOUT: } {
  920. // CHECK:STDOUT: %SelfNestedBadParam.ref: type = name_ref SelfNestedBadParam, file.%SelfNestedBadParam.decl [concrete = constants.%SelfNestedBadParam]
  921. // CHECK:STDOUT: %int_4: Core.IntLiteral = int_value 4 [concrete = constants.%int_4]
  922. // CHECK:STDOUT: %array_type: type = array_type %int_4, %SelfNestedBadParam.ref [concrete = constants.%array_type.a41]
  923. // CHECK:STDOUT: %x.param: %tuple.type.eb9 = value_param call_param0
  924. // CHECK:STDOUT: %.loc239_78.1: type = splice_block %.loc239_78.3 [concrete = constants.%tuple.type.eb9] {
  925. // CHECK:STDOUT: %SelfNestedBadReturnType.ref.loc239_14: type = name_ref SelfNestedBadReturnType, file.%SelfNestedBadReturnType.decl [concrete = constants.%SelfNestedBadReturnType]
  926. // CHECK:STDOUT: %ptr: type = ptr_type %SelfNestedBadReturnType.ref.loc239_14 [concrete = constants.%ptr.612]
  927. // CHECK:STDOUT: %SelfNestedBadReturnType.ref.loc239_45: type = name_ref SelfNestedBadReturnType, file.%SelfNestedBadReturnType.decl [concrete = constants.%SelfNestedBadReturnType]
  928. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  929. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  930. // CHECK:STDOUT: %struct_type.x.y: type = struct_type {.x: %SelfNestedBadReturnType, .y: %i32} [concrete = constants.%struct_type.x.y.ac5]
  931. // CHECK:STDOUT: %.loc239_78.2: %tuple.type.24b = tuple_literal (%ptr, %struct_type.x.y)
  932. // CHECK:STDOUT: %.loc239_78.3: type = converted %.loc239_78.2, constants.%tuple.type.eb9 [concrete = constants.%tuple.type.eb9]
  933. // CHECK:STDOUT: }
  934. // CHECK:STDOUT: %x: %tuple.type.eb9 = bind_name x, %x.param
  935. // CHECK:STDOUT: %return.param: ref %array_type.a41 = out_param call_param1
  936. // CHECK:STDOUT: %return: ref %array_type.a41 = return_slot %return.param
  937. // CHECK:STDOUT: }
  938. // CHECK:STDOUT: %F.decl.loc239_112.2: %F.type.0e7d1d.2 = fn_decl @F.loc239_112.2 [concrete = constants.%F.0bc78a.2] {
  939. // CHECK:STDOUT: %x.patt: %pattern_type.23f = binding_pattern x [concrete]
  940. // CHECK:STDOUT: %x.param_patt: %pattern_type.23f = value_param_pattern %x.patt, call_param0 [concrete]
  941. // CHECK:STDOUT: %return.patt: %pattern_type.f56 = return_slot_pattern [concrete]
  942. // CHECK:STDOUT: %return.param_patt: %pattern_type.f56 = out_param_pattern %return.patt, call_param1 [concrete]
  943. // CHECK:STDOUT: } {
  944. // CHECK:STDOUT: %x.param: %tuple.type.eb9 = value_param call_param0
  945. // CHECK:STDOUT: %x: %tuple.type.eb9 = bind_name x, %x.param
  946. // CHECK:STDOUT: %return.param: ref %array_type.126 = out_param call_param1
  947. // CHECK:STDOUT: %return: ref %array_type.126 = return_slot %return.param
  948. // CHECK:STDOUT: }
  949. // CHECK:STDOUT:
  950. // CHECK:STDOUT: !members:
  951. // CHECK:STDOUT: .SelfNestedBadReturnType = <poisoned>
  952. // CHECK:STDOUT: .SelfNestedBadParam = <poisoned>
  953. // CHECK:STDOUT: .F = %F.decl.loc239_112.1
  954. // CHECK:STDOUT: witness = @SelfNestedBadReturnType.%SelfNested.impl_witness
  955. // CHECK:STDOUT: }
  956. // CHECK:STDOUT:
  957. // CHECK:STDOUT: class @NoF {
  958. // CHECK:STDOUT: impl_decl @I.impl.0c9 [concrete] {} {
  959. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%NoF [concrete = constants.%NoF]
  960. // CHECK:STDOUT: %I.ref: type = name_ref I, file.%I.decl [concrete = constants.%I.type]
  961. // CHECK:STDOUT: }
  962. // CHECK:STDOUT: %I.impl_witness_table = impl_witness_table (<error>), @I.impl.0c9 [concrete]
  963. // CHECK:STDOUT: %I.impl_witness: <witness> = impl_witness %I.impl_witness_table [concrete = constants.%I.impl_witness.901]
  964. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  965. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  966. // CHECK:STDOUT: complete_type_witness = %complete_type
  967. // CHECK:STDOUT:
  968. // CHECK:STDOUT: !members:
  969. // CHECK:STDOUT: .Self = constants.%NoF
  970. // CHECK:STDOUT: .I = <poisoned>
  971. // CHECK:STDOUT: }
  972. // CHECK:STDOUT:
  973. // CHECK:STDOUT: class @FNotFunction {
  974. // CHECK:STDOUT: impl_decl @I.impl.b55 [concrete] {} {
  975. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FNotFunction [concrete = constants.%FNotFunction]
  976. // CHECK:STDOUT: %I.ref: type = name_ref I, file.%I.decl [concrete = constants.%I.type]
  977. // CHECK:STDOUT: }
  978. // CHECK:STDOUT: %I.impl_witness_table = impl_witness_table (<error>), @I.impl.b55 [concrete]
  979. // CHECK:STDOUT: %I.impl_witness: <witness> = impl_witness %I.impl_witness_table [concrete = constants.%I.impl_witness.44e]
  980. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  981. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  982. // CHECK:STDOUT: complete_type_witness = %complete_type
  983. // CHECK:STDOUT:
  984. // CHECK:STDOUT: !members:
  985. // CHECK:STDOUT: .Self = constants.%FNotFunction
  986. // CHECK:STDOUT: .I = <poisoned>
  987. // CHECK:STDOUT: }
  988. // CHECK:STDOUT:
  989. // CHECK:STDOUT: class @F.loc37;
  990. // CHECK:STDOUT:
  991. // CHECK:STDOUT: class @FAlias {
  992. // CHECK:STDOUT: impl_decl @I.impl.199 [concrete] {} {
  993. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FAlias [concrete = constants.%FAlias]
  994. // CHECK:STDOUT: %I.ref: type = name_ref I, file.%I.decl [concrete = constants.%I.type]
  995. // CHECK:STDOUT: }
  996. // CHECK:STDOUT: %I.impl_witness_table = impl_witness_table (<error>), @I.impl.199 [concrete]
  997. // CHECK:STDOUT: %I.impl_witness: <witness> = impl_witness %I.impl_witness_table [concrete = constants.%I.impl_witness.c80]
  998. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  999. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1000. // CHECK:STDOUT: complete_type_witness = %complete_type
  1001. // CHECK:STDOUT:
  1002. // CHECK:STDOUT: !members:
  1003. // CHECK:STDOUT: .Self = constants.%FAlias
  1004. // CHECK:STDOUT: .I = <poisoned>
  1005. // CHECK:STDOUT: .PossiblyF = <poisoned>
  1006. // CHECK:STDOUT: }
  1007. // CHECK:STDOUT:
  1008. // CHECK:STDOUT: class @FExtraParam {
  1009. // CHECK:STDOUT: impl_decl @I.impl.ddd [concrete] {} {
  1010. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FExtraParam [concrete = constants.%FExtraParam]
  1011. // CHECK:STDOUT: %I.ref: type = name_ref I, file.%I.decl [concrete = constants.%I.type]
  1012. // CHECK:STDOUT: }
  1013. // CHECK:STDOUT: %I.impl_witness_table = impl_witness_table (@I.impl.ddd.%F.decl.loc69_18.2), @I.impl.ddd [concrete]
  1014. // CHECK:STDOUT: %I.impl_witness: <witness> = impl_witness %I.impl_witness_table [concrete = constants.%I.impl_witness.1f3]
  1015. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  1016. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1017. // CHECK:STDOUT: complete_type_witness = %complete_type
  1018. // CHECK:STDOUT:
  1019. // CHECK:STDOUT: !members:
  1020. // CHECK:STDOUT: .Self = constants.%FExtraParam
  1021. // CHECK:STDOUT: .I = <poisoned>
  1022. // CHECK:STDOUT: }
  1023. // CHECK:STDOUT:
  1024. // CHECK:STDOUT: class @FExtraImplicitParam {
  1025. // CHECK:STDOUT: impl_decl @I.impl.698 [concrete] {} {
  1026. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FExtraImplicitParam [concrete = constants.%FExtraImplicitParam]
  1027. // CHECK:STDOUT: %I.ref: type = name_ref I, file.%I.decl [concrete = constants.%I.type]
  1028. // CHECK:STDOUT: }
  1029. // CHECK:STDOUT: %I.impl_witness_table = impl_witness_table (@I.impl.698.%F.decl.loc85_23.2), @I.impl.698 [concrete]
  1030. // CHECK:STDOUT: %I.impl_witness: <witness> = impl_witness %I.impl_witness_table [concrete = constants.%I.impl_witness.a7b]
  1031. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  1032. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1033. // CHECK:STDOUT: complete_type_witness = %complete_type
  1034. // CHECK:STDOUT:
  1035. // CHECK:STDOUT: !members:
  1036. // CHECK:STDOUT: .Self = constants.%FExtraImplicitParam
  1037. // CHECK:STDOUT: .I = <poisoned>
  1038. // CHECK:STDOUT: }
  1039. // CHECK:STDOUT:
  1040. // CHECK:STDOUT: class @FExtraReturnType {
  1041. // CHECK:STDOUT: impl_decl @I.impl.77b [concrete] {} {
  1042. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FExtraReturnType [concrete = constants.%FExtraReturnType]
  1043. // CHECK:STDOUT: %I.ref: type = name_ref I, file.%I.decl [concrete = constants.%I.type]
  1044. // CHECK:STDOUT: }
  1045. // CHECK:STDOUT: %I.impl_witness_table = impl_witness_table (<error>), @I.impl.77b [concrete]
  1046. // CHECK:STDOUT: %I.impl_witness: <witness> = impl_witness %I.impl_witness_table [concrete = constants.%I.impl_witness.59a]
  1047. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  1048. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1049. // CHECK:STDOUT: complete_type_witness = %complete_type
  1050. // CHECK:STDOUT:
  1051. // CHECK:STDOUT: !members:
  1052. // CHECK:STDOUT: .Self = constants.%FExtraReturnType
  1053. // CHECK:STDOUT: .I = <poisoned>
  1054. // CHECK:STDOUT: }
  1055. // CHECK:STDOUT:
  1056. // CHECK:STDOUT: class @FMissingParam {
  1057. // CHECK:STDOUT: impl_decl @J.impl.5cf [concrete] {} {
  1058. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FMissingParam [concrete = constants.%FMissingParam]
  1059. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  1060. // CHECK:STDOUT: }
  1061. // CHECK:STDOUT: %J.impl_witness_table = impl_witness_table (@J.impl.5cf.%F.decl.loc117_31.2), @J.impl.5cf [concrete]
  1062. // CHECK:STDOUT: %J.impl_witness: <witness> = impl_witness %J.impl_witness_table [concrete = constants.%J.impl_witness.4e9]
  1063. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  1064. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1065. // CHECK:STDOUT: complete_type_witness = %complete_type
  1066. // CHECK:STDOUT:
  1067. // CHECK:STDOUT: !members:
  1068. // CHECK:STDOUT: .Self = constants.%FMissingParam
  1069. // CHECK:STDOUT: .J = <poisoned>
  1070. // CHECK:STDOUT: }
  1071. // CHECK:STDOUT:
  1072. // CHECK:STDOUT: class @FMissingImplicitParam {
  1073. // CHECK:STDOUT: impl_decl @J.impl.bac [concrete] {} {
  1074. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FMissingImplicitParam [concrete = constants.%FMissingImplicitParam]
  1075. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  1076. // CHECK:STDOUT: }
  1077. // CHECK:STDOUT: %J.impl_witness_table = impl_witness_table (@J.impl.bac.%F.decl.loc130_26.2), @J.impl.bac [concrete]
  1078. // CHECK:STDOUT: %J.impl_witness: <witness> = impl_witness %J.impl_witness_table [concrete = constants.%J.impl_witness.841]
  1079. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  1080. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1081. // CHECK:STDOUT: complete_type_witness = %complete_type
  1082. // CHECK:STDOUT:
  1083. // CHECK:STDOUT: !members:
  1084. // CHECK:STDOUT: .Self = constants.%FMissingImplicitParam
  1085. // CHECK:STDOUT: .J = <poisoned>
  1086. // CHECK:STDOUT: }
  1087. // CHECK:STDOUT:
  1088. // CHECK:STDOUT: class @FMissingReturnType {
  1089. // CHECK:STDOUT: impl_decl @J.impl.1a7 [concrete] {} {
  1090. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FMissingReturnType [concrete = constants.%FMissingReturnType]
  1091. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  1092. // CHECK:STDOUT: }
  1093. // CHECK:STDOUT: %J.impl_witness_table = impl_witness_table (@J.impl.1a7.%F.decl.loc152_30.2), @J.impl.1a7 [concrete]
  1094. // CHECK:STDOUT: %J.impl_witness: <witness> = impl_witness %J.impl_witness_table [concrete = constants.%J.impl_witness.e75]
  1095. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  1096. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1097. // CHECK:STDOUT: complete_type_witness = %complete_type
  1098. // CHECK:STDOUT:
  1099. // CHECK:STDOUT: !members:
  1100. // CHECK:STDOUT: .Self = constants.%FMissingReturnType
  1101. // CHECK:STDOUT: .J = <poisoned>
  1102. // CHECK:STDOUT: }
  1103. // CHECK:STDOUT:
  1104. // CHECK:STDOUT: class @FDifferentParamType {
  1105. // CHECK:STDOUT: impl_decl @J.impl.f2b [concrete] {} {
  1106. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FDifferentParamType [concrete = constants.%FDifferentParamType]
  1107. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  1108. // CHECK:STDOUT: }
  1109. // CHECK:STDOUT: %J.impl_witness_table = impl_witness_table (@J.impl.f2b.%F.decl.loc171_38.2), @J.impl.f2b [concrete]
  1110. // CHECK:STDOUT: %J.impl_witness: <witness> = impl_witness %J.impl_witness_table [concrete = constants.%J.impl_witness.cbe]
  1111. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  1112. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1113. // CHECK:STDOUT: complete_type_witness = %complete_type
  1114. // CHECK:STDOUT:
  1115. // CHECK:STDOUT: !members:
  1116. // CHECK:STDOUT: .Self = constants.%FDifferentParamType
  1117. // CHECK:STDOUT: .J = <poisoned>
  1118. // CHECK:STDOUT: }
  1119. // CHECK:STDOUT:
  1120. // CHECK:STDOUT: class @FDifferentImplicitParamType {
  1121. // CHECK:STDOUT: impl_decl @J.impl.db4 [concrete] {} {
  1122. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FDifferentImplicitParamType [concrete = constants.%FDifferentImplicitParamType]
  1123. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  1124. // CHECK:STDOUT: }
  1125. // CHECK:STDOUT: %J.impl_witness_table = impl_witness_table (@J.impl.db4.%F.decl.loc184_38.2), @J.impl.db4 [concrete]
  1126. // CHECK:STDOUT: %J.impl_witness: <witness> = impl_witness %J.impl_witness_table [concrete = constants.%J.impl_witness.af2]
  1127. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  1128. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1129. // CHECK:STDOUT: complete_type_witness = %complete_type
  1130. // CHECK:STDOUT:
  1131. // CHECK:STDOUT: !members:
  1132. // CHECK:STDOUT: .Self = constants.%FDifferentImplicitParamType
  1133. // CHECK:STDOUT: .J = <poisoned>
  1134. // CHECK:STDOUT: }
  1135. // CHECK:STDOUT:
  1136. // CHECK:STDOUT: class @FDifferentReturnType {
  1137. // CHECK:STDOUT: impl_decl @J.impl.fcc [concrete] {} {
  1138. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%FDifferentReturnType [concrete = constants.%FDifferentReturnType]
  1139. // CHECK:STDOUT: %J.ref: type = name_ref J, file.%J.decl [concrete = constants.%J.type]
  1140. // CHECK:STDOUT: }
  1141. // CHECK:STDOUT: %J.impl_witness_table = impl_witness_table (@J.impl.fcc.%F.decl.loc200_38.2), @J.impl.fcc [concrete]
  1142. // CHECK:STDOUT: %J.impl_witness: <witness> = impl_witness %J.impl_witness_table [concrete = constants.%J.impl_witness.bc1]
  1143. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  1144. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1145. // CHECK:STDOUT: complete_type_witness = %complete_type
  1146. // CHECK:STDOUT:
  1147. // CHECK:STDOUT: !members:
  1148. // CHECK:STDOUT: .Self = constants.%FDifferentReturnType
  1149. // CHECK:STDOUT: .J = <poisoned>
  1150. // CHECK:STDOUT: }
  1151. // CHECK:STDOUT:
  1152. // CHECK:STDOUT: class @SelfNestedBadParam {
  1153. // CHECK:STDOUT: impl_decl @SelfNested.impl.6a5 [concrete] {} {
  1154. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%SelfNestedBadParam [concrete = constants.%SelfNestedBadParam]
  1155. // CHECK:STDOUT: %SelfNested.ref: type = name_ref SelfNested, file.%SelfNested.decl [concrete = constants.%SelfNested.type]
  1156. // CHECK:STDOUT: }
  1157. // CHECK:STDOUT: %SelfNested.impl_witness_table = impl_witness_table (@SelfNested.impl.6a5.%F.decl.loc223_87.2), @SelfNested.impl.6a5 [concrete]
  1158. // CHECK:STDOUT: %SelfNested.impl_witness: <witness> = impl_witness %SelfNested.impl_witness_table [concrete = constants.%SelfNested.impl_witness.e31]
  1159. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  1160. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1161. // CHECK:STDOUT: complete_type_witness = %complete_type
  1162. // CHECK:STDOUT:
  1163. // CHECK:STDOUT: !members:
  1164. // CHECK:STDOUT: .Self = constants.%SelfNestedBadParam
  1165. // CHECK:STDOUT: .SelfNested = <poisoned>
  1166. // CHECK:STDOUT: .SelfNestedBadParam = <poisoned>
  1167. // CHECK:STDOUT: }
  1168. // CHECK:STDOUT:
  1169. // CHECK:STDOUT: class @SelfNestedBadReturnType {
  1170. // CHECK:STDOUT: impl_decl @SelfNested.impl.bfc [concrete] {} {
  1171. // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%SelfNestedBadReturnType [concrete = constants.%SelfNestedBadReturnType]
  1172. // CHECK:STDOUT: %SelfNested.ref: type = name_ref SelfNested, file.%SelfNested.decl [concrete = constants.%SelfNested.type]
  1173. // CHECK:STDOUT: }
  1174. // CHECK:STDOUT: %SelfNested.impl_witness_table = impl_witness_table (@SelfNested.impl.bfc.%F.decl.loc239_112.2), @SelfNested.impl.bfc [concrete]
  1175. // CHECK:STDOUT: %SelfNested.impl_witness: <witness> = impl_witness %SelfNested.impl_witness_table [concrete = constants.%SelfNested.impl_witness.d5e]
  1176. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  1177. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type.357]
  1178. // CHECK:STDOUT: complete_type_witness = %complete_type
  1179. // CHECK:STDOUT:
  1180. // CHECK:STDOUT: !members:
  1181. // CHECK:STDOUT: .Self = constants.%SelfNestedBadReturnType
  1182. // CHECK:STDOUT: .SelfNested = <poisoned>
  1183. // CHECK:STDOUT: .SelfNestedBadReturnType = <poisoned>
  1184. // CHECK:STDOUT: .SelfNestedBadParam = <poisoned>
  1185. // CHECK:STDOUT: }
  1186. // CHECK:STDOUT:
  1187. // CHECK:STDOUT: generic fn @F.loc15(@I.%Self: %I.type) {
  1188. // CHECK:STDOUT: fn();
  1189. // CHECK:STDOUT: }
  1190. // CHECK:STDOUT:
  1191. // CHECK:STDOUT: fn @PossiblyF();
  1192. // CHECK:STDOUT:
  1193. // CHECK:STDOUT: fn @F.loc69_18.1(%b.param: bool);
  1194. // CHECK:STDOUT:
  1195. // CHECK:STDOUT: fn @F.loc69_18.2() [thunk @I.impl.ddd.%F.decl.loc69_18.1] {
  1196. // CHECK:STDOUT: !entry:
  1197. // CHECK:STDOUT: %F.ref: %F.type.44ef8c.1 = name_ref F, @I.impl.ddd.%F.decl.loc69_18.1 [concrete = constants.%F.424e9e.1]
  1198. // CHECK:STDOUT: return
  1199. // CHECK:STDOUT: }
  1200. // CHECK:STDOUT:
  1201. // CHECK:STDOUT: fn @F.loc85_23.1(%self.param: %FExtraImplicitParam);
  1202. // CHECK:STDOUT:
  1203. // CHECK:STDOUT: fn @F.loc85_23.2() [thunk @I.impl.698.%F.decl.loc85_23.1] {
  1204. // CHECK:STDOUT: !entry:
  1205. // CHECK:STDOUT: %F.ref: %F.type.e1abdd.1 = name_ref F, @I.impl.698.%F.decl.loc85_23.1 [concrete = constants.%F.6ff574.1]
  1206. // CHECK:STDOUT: %F.call: init %empty_tuple.type = call %F.ref(<error>)
  1207. // CHECK:STDOUT: return
  1208. // CHECK:STDOUT: }
  1209. // CHECK:STDOUT:
  1210. // CHECK:STDOUT: fn @F.loc99() -> bool;
  1211. // CHECK:STDOUT:
  1212. // CHECK:STDOUT: generic fn @F.loc103(@J.%Self: %J.type) {
  1213. // CHECK:STDOUT: fn(%self.param: bool, %b.param: bool) -> bool;
  1214. // CHECK:STDOUT: }
  1215. // CHECK:STDOUT:
  1216. // CHECK:STDOUT: fn @F.loc117_31.1(%self.param: bool) -> bool;
  1217. // CHECK:STDOUT:
  1218. // CHECK:STDOUT: fn @F.loc117_31.2(%self.param: bool, %b.param: bool) -> bool [thunk @J.impl.5cf.%F.decl.loc117_31.1] {
  1219. // CHECK:STDOUT: !entry:
  1220. // CHECK:STDOUT: %F.ref: %F.type.69596c.1 = name_ref F, @J.impl.5cf.%F.decl.loc117_31.1 [concrete = constants.%F.738f31.1]
  1221. // CHECK:STDOUT: %self.ref: bool = name_ref self, %self.param
  1222. // CHECK:STDOUT: %b.ref: bool = name_ref b, %b.param
  1223. // CHECK:STDOUT: %return.ref: ref bool = name_ref <return slot>, %return.param
  1224. // CHECK:STDOUT: %F.bound: <bound method> = bound_method %self.ref, %F.ref
  1225. // CHECK:STDOUT: return <error>
  1226. // CHECK:STDOUT: }
  1227. // CHECK:STDOUT:
  1228. // CHECK:STDOUT: fn @F.loc130_26.1(%b.param: bool) -> bool;
  1229. // CHECK:STDOUT:
  1230. // CHECK:STDOUT: fn @F.loc130_26.2(%self.param: bool, %b.param: bool) -> bool [thunk @J.impl.bac.%F.decl.loc130_26.1] {
  1231. // CHECK:STDOUT: !entry:
  1232. // CHECK:STDOUT: %F.ref: %F.type.d97cef.1 = name_ref F, @J.impl.bac.%F.decl.loc130_26.1 [concrete = constants.%F.01de92.1]
  1233. // CHECK:STDOUT: %self.ref: bool = name_ref self, %self.param
  1234. // CHECK:STDOUT: %b.ref: bool = name_ref b, %b.param
  1235. // CHECK:STDOUT: %return.ref: ref bool = name_ref <return slot>, %return.param
  1236. // CHECK:STDOUT: %F.call: init bool = call %F.ref(%b.ref)
  1237. // CHECK:STDOUT: %.loc130_26.1: bool = value_of_initializer %F.call
  1238. // CHECK:STDOUT: %.loc130_26.2: bool = converted %F.call, %.loc130_26.1
  1239. // CHECK:STDOUT: return %.loc130_26.2
  1240. // CHECK:STDOUT: }
  1241. // CHECK:STDOUT:
  1242. // CHECK:STDOUT: fn @F.loc152_30.1(%self.param: bool, %b.param: bool);
  1243. // CHECK:STDOUT:
  1244. // CHECK:STDOUT: fn @F.loc152_30.2(%self.param: bool, %b.param: bool) -> bool [thunk @J.impl.1a7.%F.decl.loc152_30.1] {
  1245. // CHECK:STDOUT: !entry:
  1246. // CHECK:STDOUT: %F.ref: %F.type.123d7a.1 = name_ref F, @J.impl.1a7.%F.decl.loc152_30.1 [concrete = constants.%F.c7d02d.1]
  1247. // CHECK:STDOUT: %self.ref: bool = name_ref self, %self.param
  1248. // CHECK:STDOUT: %b.ref: bool = name_ref b, %b.param
  1249. // CHECK:STDOUT: %return.ref: ref bool = name_ref <return slot>, %return.param
  1250. // CHECK:STDOUT: %F.bound: <bound method> = bound_method %self.ref, %F.ref
  1251. // CHECK:STDOUT: %F.call: init %empty_tuple.type = call %F.bound(%self.ref, %b.ref)
  1252. // CHECK:STDOUT: %.loc152: bool = converted %F.call, <error> [concrete = <error>]
  1253. // CHECK:STDOUT: return <error>
  1254. // CHECK:STDOUT: }
  1255. // CHECK:STDOUT:
  1256. // CHECK:STDOUT: fn @F.loc171_38.1(%self.param: bool, %b.param: %FDifferentParamType) -> bool;
  1257. // CHECK:STDOUT:
  1258. // CHECK:STDOUT: fn @F.loc171_38.2(%self.param: bool, %b.param: bool) -> bool [thunk @J.impl.f2b.%F.decl.loc171_38.1] {
  1259. // CHECK:STDOUT: !entry:
  1260. // CHECK:STDOUT: %F.ref: %F.type.6b537d.1 = name_ref F, @J.impl.f2b.%F.decl.loc171_38.1 [concrete = constants.%F.04313a.1]
  1261. // CHECK:STDOUT: %self.ref: bool = name_ref self, %self.param
  1262. // CHECK:STDOUT: %b.ref: bool = name_ref b, %b.param
  1263. // CHECK:STDOUT: %return.ref: ref bool = name_ref <return slot>, %return.param
  1264. // CHECK:STDOUT: %F.bound: <bound method> = bound_method %self.ref, %F.ref
  1265. // CHECK:STDOUT: %.loc103: %FDifferentParamType = converted %b.ref, <error> [concrete = <error>]
  1266. // CHECK:STDOUT: %F.call: init bool = call %F.bound(%self.ref, <error>)
  1267. // CHECK:STDOUT: %.loc171_38.1: bool = value_of_initializer %F.call
  1268. // CHECK:STDOUT: %.loc171_38.2: bool = converted %F.call, %.loc171_38.1
  1269. // CHECK:STDOUT: return %.loc171_38.2
  1270. // CHECK:STDOUT: }
  1271. // CHECK:STDOUT:
  1272. // CHECK:STDOUT: fn @F.loc184_38.1(%self.param: %FDifferentImplicitParamType, %b.param: bool) -> bool;
  1273. // CHECK:STDOUT:
  1274. // CHECK:STDOUT: fn @F.loc184_38.2(%self.param: bool, %b.param: bool) -> bool [thunk @J.impl.db4.%F.decl.loc184_38.1] {
  1275. // CHECK:STDOUT: !entry:
  1276. // CHECK:STDOUT: %F.ref: %F.type.d6232a.1 = name_ref F, @J.impl.db4.%F.decl.loc184_38.1 [concrete = constants.%F.886f70.1]
  1277. // CHECK:STDOUT: %self.ref: bool = name_ref self, %self.param
  1278. // CHECK:STDOUT: %b.ref: bool = name_ref b, %b.param
  1279. // CHECK:STDOUT: %return.ref: ref bool = name_ref <return slot>, %return.param
  1280. // CHECK:STDOUT: %F.bound: <bound method> = bound_method %self.ref, %F.ref
  1281. // CHECK:STDOUT: %.loc103: %FDifferentImplicitParamType = converted %self.ref, <error> [concrete = <error>]
  1282. // CHECK:STDOUT: %F.call: init bool = call %F.bound(<error>, %b.ref)
  1283. // CHECK:STDOUT: %.loc184_38.1: bool = value_of_initializer %F.call
  1284. // CHECK:STDOUT: %.loc184_38.2: bool = converted %F.call, %.loc184_38.1
  1285. // CHECK:STDOUT: return %.loc184_38.2
  1286. // CHECK:STDOUT: }
  1287. // CHECK:STDOUT:
  1288. // CHECK:STDOUT: fn @F.loc200_38.1(%self.param: bool, %b.param: bool) -> %return.param: %FDifferentReturnType;
  1289. // CHECK:STDOUT:
  1290. // CHECK:STDOUT: fn @F.loc200_38.2(%self.param: bool, %b.param: bool) -> bool [thunk @J.impl.fcc.%F.decl.loc200_38.1] {
  1291. // CHECK:STDOUT: !entry:
  1292. // CHECK:STDOUT: %F.ref: %F.type.d3b58f.1 = name_ref F, @J.impl.fcc.%F.decl.loc200_38.1 [concrete = constants.%F.be86c9.1]
  1293. // CHECK:STDOUT: %self.ref: bool = name_ref self, %self.param
  1294. // CHECK:STDOUT: %b.ref: bool = name_ref b, %b.param
  1295. // CHECK:STDOUT: %return.ref: ref bool = name_ref <return slot>, %return.param
  1296. // CHECK:STDOUT: %F.bound: <bound method> = bound_method %self.ref, %F.ref
  1297. // CHECK:STDOUT: %.loc200_38.1: ref %FDifferentReturnType = temporary_storage
  1298. // CHECK:STDOUT: %F.call: init %FDifferentReturnType = call %F.bound(%self.ref, %b.ref) to %.loc200_38.1
  1299. // CHECK:STDOUT: %.loc200_38.2: bool = converted %F.call, <error> [concrete = <error>]
  1300. // CHECK:STDOUT: %Op.bound: <bound method> = bound_method %.loc200_38.1, constants.%Op.ddd
  1301. // CHECK:STDOUT: %Op.specific_fn: <specific function> = specific_function constants.%Op.ddd, @Op.2(constants.%FDifferentReturnType) [concrete = constants.%Op.specific_fn.b4b]
  1302. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %.loc200_38.1, %Op.specific_fn
  1303. // CHECK:STDOUT: %addr: %ptr.954 = addr_of %.loc200_38.1
  1304. // CHECK:STDOUT: %no_op: init %empty_tuple.type = call %bound_method(%addr)
  1305. // CHECK:STDOUT: return <error>
  1306. // CHECK:STDOUT: }
  1307. // CHECK:STDOUT:
  1308. // CHECK:STDOUT: generic fn @F.loc211(@SelfNested.%Self: %SelfNested.type) {
  1309. // CHECK:STDOUT: %Self: %SelfNested.type = bind_symbolic_name Self, 0 [symbolic = %Self (constants.%Self.2ff)]
  1310. // CHECK:STDOUT: %Self.as_type.loc211_16.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc211_16.1 (constants.%Self.as_type.e1e)]
  1311. // CHECK:STDOUT: %ptr.loc211_16.1: type = ptr_type %Self.as_type.loc211_16.1 [symbolic = %ptr.loc211_16.1 (constants.%ptr.e87)]
  1312. // CHECK:STDOUT: %struct_type.x.y.loc211_37.1: type = struct_type {.x: @F.loc211.%Self.as_type.loc211_16.1 (%Self.as_type.e1e), .y: %i32} [symbolic = %struct_type.x.y.loc211_37.1 (constants.%struct_type.x.y.81e)]
  1313. // CHECK:STDOUT: %tuple.type: type = tuple_type (%ptr.loc211_16.1, %struct_type.x.y.loc211_37.1) [symbolic = %tuple.type (constants.%tuple.type.229)]
  1314. // CHECK:STDOUT: %pattern_type.loc211_8: type = pattern_type %tuple.type [symbolic = %pattern_type.loc211_8 (constants.%pattern_type.ced)]
  1315. // CHECK:STDOUT: %array_type.loc211_57.1: type = array_type constants.%int_4, %Self.as_type.loc211_16.1 [symbolic = %array_type.loc211_57.1 (constants.%array_type.873)]
  1316. // CHECK:STDOUT: %pattern_type.loc211_41: type = pattern_type %array_type.loc211_57.1 [symbolic = %pattern_type.loc211_41 (constants.%pattern_type.c7e)]
  1317. // CHECK:STDOUT:
  1318. // CHECK:STDOUT: fn(%x.param: @F.loc211.%tuple.type (%tuple.type.229)) -> @F.loc211.%array_type.loc211_57.1 (%array_type.873);
  1319. // CHECK:STDOUT: }
  1320. // CHECK:STDOUT:
  1321. // CHECK:STDOUT: fn @F.loc223_87.1(%x.param: %tuple.type.a7d) -> %return.param: %array_type.a41;
  1322. // CHECK:STDOUT:
  1323. // CHECK:STDOUT: fn @F.loc223_87.2(%x.param: %tuple.type.9c9) -> %return.param: %array_type.a41 [thunk @SelfNested.impl.6a5.%F.decl.loc223_87.1] {
  1324. // CHECK:STDOUT: !entry:
  1325. // CHECK:STDOUT: %F.ref: %F.type.f90165.1 = name_ref F, @SelfNested.impl.6a5.%F.decl.loc223_87.1 [concrete = constants.%F.fa8d04.1]
  1326. // CHECK:STDOUT: %x.ref: %tuple.type.9c9 = name_ref x, %x.param
  1327. // CHECK:STDOUT: %return.ref: ref %array_type.a41 = name_ref <return slot>, %return.param
  1328. // CHECK:STDOUT: %.loc211_41: ref %array_type.a41 = splice_block %return {}
  1329. // CHECK:STDOUT: %tuple.elem0: %ptr.4cd = tuple_access %x.ref, element0
  1330. // CHECK:STDOUT: %tuple.elem1: %struct_type.x.y.a89 = tuple_access %x.ref, element1
  1331. // CHECK:STDOUT: %.loc211_9.1: %SelfNestedBadParam = struct_access %tuple.elem1, element0
  1332. // CHECK:STDOUT: %.loc211_9.2: %i32 = converted %.loc211_9.1, <error> [concrete = <error>]
  1333. // CHECK:STDOUT: %F.call: init %array_type.a41 = call %F.ref(<error>) to %.loc211_41
  1334. // CHECK:STDOUT: %Op.bound: <bound method> = bound_method %.loc211_41, constants.%Op.d25
  1335. // CHECK:STDOUT: %Op.specific_fn: <specific function> = specific_function constants.%Op.d25, @Op.2(constants.%array_type.a41) [concrete = constants.%Op.specific_fn.235]
  1336. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %.loc211_41, %Op.specific_fn
  1337. // CHECK:STDOUT: %addr: %ptr.f40 = addr_of %.loc211_41
  1338. // CHECK:STDOUT: %no_op: init %empty_tuple.type = call %bound_method(%addr)
  1339. // CHECK:STDOUT: return %F.call to %return
  1340. // CHECK:STDOUT: }
  1341. // CHECK:STDOUT:
  1342. // CHECK:STDOUT: fn @F.loc239_112.1(%x.param: %tuple.type.eb9) -> %return.param: %array_type.a41;
  1343. // CHECK:STDOUT:
  1344. // CHECK:STDOUT: fn @F.loc239_112.2(%x.param: %tuple.type.eb9) -> %return.param: %array_type.126 [thunk @SelfNested.impl.bfc.%F.decl.loc239_112.1] {
  1345. // CHECK:STDOUT: !entry:
  1346. // CHECK:STDOUT: %F.ref: %F.type.0e7d1d.1 = name_ref F, @SelfNested.impl.bfc.%F.decl.loc239_112.1 [concrete = constants.%F.0bc78a.1]
  1347. // CHECK:STDOUT: %x.ref: %tuple.type.eb9 = name_ref x, %x.param
  1348. // CHECK:STDOUT: %return.ref: ref %array_type.126 = name_ref <return slot>, %return.param
  1349. // CHECK:STDOUT: %.loc239_112.1: ref %array_type.a41 = temporary_storage
  1350. // CHECK:STDOUT: %F.call: init %array_type.a41 = call %F.ref(%x.ref) to %.loc239_112.1
  1351. // CHECK:STDOUT: %.loc239_112.2: %array_type.126 = converted %F.call, <error> [concrete = <error>]
  1352. // CHECK:STDOUT: %Op.bound: <bound method> = bound_method %.loc239_112.1, constants.%Op.d25
  1353. // CHECK:STDOUT: %Op.specific_fn: <specific function> = specific_function constants.%Op.d25, @Op.2(constants.%array_type.a41) [concrete = constants.%Op.specific_fn.235]
  1354. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %.loc239_112.1, %Op.specific_fn
  1355. // CHECK:STDOUT: %addr: %ptr.f40 = addr_of %.loc239_112.1
  1356. // CHECK:STDOUT: %no_op: init %empty_tuple.type = call %bound_method(%addr)
  1357. // CHECK:STDOUT: return <error> to %return
  1358. // CHECK:STDOUT: }
  1359. // CHECK:STDOUT:
  1360. // CHECK:STDOUT: specific @F.loc15(constants.%Self.826) {}
  1361. // CHECK:STDOUT:
  1362. // CHECK:STDOUT: specific @F.loc15(constants.%I.facet.fa4) {}
  1363. // CHECK:STDOUT:
  1364. // CHECK:STDOUT: specific @F.loc15(constants.%I.facet.ee5) {}
  1365. // CHECK:STDOUT:
  1366. // CHECK:STDOUT: specific @F.loc15(constants.%I.facet.d5c) {}
  1367. // CHECK:STDOUT:
  1368. // CHECK:STDOUT: specific @F.loc103(constants.%Self.ccd) {}
  1369. // CHECK:STDOUT:
  1370. // CHECK:STDOUT: specific @F.loc103(constants.%J.facet.94c) {}
  1371. // CHECK:STDOUT:
  1372. // CHECK:STDOUT: specific @F.loc103(constants.%J.facet.e7e) {}
  1373. // CHECK:STDOUT:
  1374. // CHECK:STDOUT: specific @F.loc103(constants.%J.facet.974) {}
  1375. // CHECK:STDOUT:
  1376. // CHECK:STDOUT: specific @F.loc103(constants.%J.facet.37e) {}
  1377. // CHECK:STDOUT:
  1378. // CHECK:STDOUT: specific @F.loc103(constants.%J.facet.bf1) {}
  1379. // CHECK:STDOUT:
  1380. // CHECK:STDOUT: specific @F.loc103(constants.%J.facet.67f) {}
  1381. // CHECK:STDOUT:
  1382. // CHECK:STDOUT: specific @F.loc211(constants.%Self.2ff) {
  1383. // CHECK:STDOUT: %Self => constants.%Self.2ff
  1384. // CHECK:STDOUT: %Self.as_type.loc211_16.1 => constants.%Self.as_type.e1e
  1385. // CHECK:STDOUT: %ptr.loc211_16.1 => constants.%ptr.e87
  1386. // CHECK:STDOUT: %struct_type.x.y.loc211_37.1 => constants.%struct_type.x.y.81e
  1387. // CHECK:STDOUT: %tuple.type => constants.%tuple.type.229
  1388. // CHECK:STDOUT: %pattern_type.loc211_8 => constants.%pattern_type.ced
  1389. // CHECK:STDOUT: %array_type.loc211_57.1 => constants.%array_type.873
  1390. // CHECK:STDOUT: %pattern_type.loc211_41 => constants.%pattern_type.c7e
  1391. // CHECK:STDOUT: }
  1392. // CHECK:STDOUT:
  1393. // CHECK:STDOUT: specific @F.loc211(constants.%SelfNested.facet.608) {
  1394. // CHECK:STDOUT: %Self => constants.%SelfNested.facet.608
  1395. // CHECK:STDOUT: %Self.as_type.loc211_16.1 => constants.%SelfNestedBadParam
  1396. // CHECK:STDOUT: %ptr.loc211_16.1 => constants.%ptr.4cd
  1397. // CHECK:STDOUT: %struct_type.x.y.loc211_37.1 => constants.%struct_type.x.y.a89
  1398. // CHECK:STDOUT: %tuple.type => constants.%tuple.type.9c9
  1399. // CHECK:STDOUT: %pattern_type.loc211_8 => constants.%pattern_type.a5c
  1400. // CHECK:STDOUT: %array_type.loc211_57.1 => constants.%array_type.a41
  1401. // CHECK:STDOUT: %pattern_type.loc211_41 => constants.%pattern_type.1f1
  1402. // CHECK:STDOUT: }
  1403. // CHECK:STDOUT:
  1404. // CHECK:STDOUT: specific @F.loc211(constants.%SelfNested.facet.766) {
  1405. // CHECK:STDOUT: %Self => constants.%SelfNested.facet.766
  1406. // CHECK:STDOUT: %Self.as_type.loc211_16.1 => constants.%SelfNestedBadReturnType
  1407. // CHECK:STDOUT: %ptr.loc211_16.1 => constants.%ptr.612
  1408. // CHECK:STDOUT: %struct_type.x.y.loc211_37.1 => constants.%struct_type.x.y.ac5
  1409. // CHECK:STDOUT: %tuple.type => constants.%tuple.type.eb9
  1410. // CHECK:STDOUT: %pattern_type.loc211_8 => constants.%pattern_type.23f
  1411. // CHECK:STDOUT: %array_type.loc211_57.1 => constants.%array_type.126
  1412. // CHECK:STDOUT: %pattern_type.loc211_41 => constants.%pattern_type.f56
  1413. // CHECK:STDOUT: }
  1414. // CHECK:STDOUT: