local.carbon 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318
  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/int.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/generic/local.carbon
  12. // TIP: To dump output, run:
  13. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/generic/local.carbon
  14. // --- class.carbon
  15. library "[[@TEST_NAME]]";
  16. fn F() {
  17. class C(T:! type) {
  18. var x: T;
  19. }
  20. var v: C(i32) = {.x = 1};
  21. }
  22. // --- fail_param_shadows_class.carbon
  23. library "[[@TEST_NAME]]";
  24. fn F() {
  25. // TODO: Decide on what behavior we want here. We don't reject the corresponding case outside of a function.
  26. // CHECK:STDERR: fail_param_shadows_class.carbon:[[@LINE+7]]:9: error: duplicate name `C` being declared in the same scope [NameDeclDuplicate]
  27. // CHECK:STDERR: class C(C:! type) {
  28. // CHECK:STDERR: ^
  29. // CHECK:STDERR: fail_param_shadows_class.carbon:[[@LINE+4]]:11: note: name is previously declared here [NameDeclPrevious]
  30. // CHECK:STDERR: class C(C:! type) {
  31. // CHECK:STDERR: ^
  32. // CHECK:STDERR:
  33. class C(C:! type) {
  34. }
  35. }
  36. // --- nonlocal_param_shadows_class.carbon
  37. library "[[@TEST_NAME]]";
  38. class C(C:! type) {
  39. }
  40. // CHECK:STDOUT: --- class.carbon
  41. // CHECK:STDOUT:
  42. // CHECK:STDOUT: constants {
  43. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  44. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  45. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  46. // CHECK:STDOUT: %type: type = facet_type <type> [concrete]
  47. // CHECK:STDOUT: %.Self: %type = symbolic_binding .Self [symbolic_self]
  48. // CHECK:STDOUT: %T: type = symbolic_binding T, 0 [symbolic]
  49. // CHECK:STDOUT: %pattern_type.98f: type = pattern_type type [concrete]
  50. // CHECK:STDOUT: %C.type: type = generic_class_type @C [concrete]
  51. // CHECK:STDOUT: %C.generic: %C.type = struct_value () [concrete]
  52. // CHECK:STDOUT: %C.5d4: type = class_type @C, @C(%T) [symbolic]
  53. // CHECK:STDOUT: %require_complete.944: <witness> = require_complete_type %T [symbolic]
  54. // CHECK:STDOUT: %C.elem.d15: type = unbound_element_type %C.5d4, %T [symbolic]
  55. // CHECK:STDOUT: %struct_type.x.0c5: type = struct_type {.x: %T} [symbolic]
  56. // CHECK:STDOUT: %complete_type.735: <witness> = complete_type_witness %struct_type.x.0c5 [symbolic]
  57. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  58. // CHECK:STDOUT: %Int.type: type = generic_class_type @Int [concrete]
  59. // CHECK:STDOUT: %Int.generic: %Int.type = struct_value () [concrete]
  60. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  61. // CHECK:STDOUT: %C.d45: type = class_type @C, @C(%i32) [concrete]
  62. // CHECK:STDOUT: %i32.builtin: type = int_type signed, %int_32 [concrete]
  63. // CHECK:STDOUT: %complete_type.f8a: <witness> = complete_type_witness %i32.builtin [concrete]
  64. // CHECK:STDOUT: %C.elem.f74: type = unbound_element_type %C.d45, %i32 [concrete]
  65. // CHECK:STDOUT: %struct_type.x.ed6: type = struct_type {.x: %i32} [concrete]
  66. // CHECK:STDOUT: %complete_type.1ec: <witness> = complete_type_witness %struct_type.x.ed6 [concrete]
  67. // CHECK:STDOUT: %pattern_type.7db: type = pattern_type %C.d45 [concrete]
  68. // CHECK:STDOUT: %int_1.5b8: Core.IntLiteral = int_value 1 [concrete]
  69. // CHECK:STDOUT: %struct_type.x.c96: type = struct_type {.x: Core.IntLiteral} [concrete]
  70. // CHECK:STDOUT: %struct: %struct_type.x.c96 = struct_value (%int_1.5b8) [concrete]
  71. // CHECK:STDOUT: %ImplicitAs.type.cc7: type = generic_interface_type @ImplicitAs [concrete]
  72. // CHECK:STDOUT: %ImplicitAs.generic: %ImplicitAs.type.cc7 = struct_value () [concrete]
  73. // CHECK:STDOUT: %ImplicitAs.type.e8c: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [concrete]
  74. // CHECK:STDOUT: %ImplicitAs.Convert.type.1b6: type = fn_type @ImplicitAs.Convert, @ImplicitAs(%i32) [concrete]
  75. // CHECK:STDOUT: %To: Core.IntLiteral = symbolic_binding To, 0 [symbolic]
  76. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.4e6: type = fn_type @Core.IntLiteral.as.ImplicitAs.impl.Convert, @Core.IntLiteral.as.ImplicitAs.impl(%To) [symbolic]
  77. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.3c2: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.4e6 = struct_value () [symbolic]
  78. // CHECK:STDOUT: %ImplicitAs.impl_witness.6bc: <witness> = impl_witness imports.%ImplicitAs.impl_witness_table.74f, @Core.IntLiteral.as.ImplicitAs.impl(%int_32) [concrete]
  79. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.e0d: type = fn_type @Core.IntLiteral.as.ImplicitAs.impl.Convert, @Core.IntLiteral.as.ImplicitAs.impl(%int_32) [concrete]
  80. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.0b5: %Core.IntLiteral.as.ImplicitAs.impl.Convert.type.e0d = struct_value () [concrete]
  81. // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.e8c = facet_value Core.IntLiteral, (%ImplicitAs.impl_witness.6bc) [concrete]
  82. // CHECK:STDOUT: %.863: type = fn_type_with_self_type %ImplicitAs.Convert.type.1b6, %ImplicitAs.facet [concrete]
  83. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.bound: <bound method> = bound_method %int_1.5b8, %Core.IntLiteral.as.ImplicitAs.impl.Convert.0b5 [concrete]
  84. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn: <specific function> = specific_function %Core.IntLiteral.as.ImplicitAs.impl.Convert.0b5, @Core.IntLiteral.as.ImplicitAs.impl.Convert(%int_32) [concrete]
  85. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %int_1.5b8, %Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn [concrete]
  86. // CHECK:STDOUT: %int_1.5d2: %i32 = int_value 1 [concrete]
  87. // CHECK:STDOUT: %C.val: %C.d45 = struct_value (%int_1.5d2) [concrete]
  88. // CHECK:STDOUT: %Destroy.type: type = facet_type <@Destroy> [concrete]
  89. // CHECK:STDOUT: %DestroyOp.type: type = fn_type @DestroyOp [concrete]
  90. // CHECK:STDOUT: %DestroyOp: %DestroyOp.type = struct_value () [concrete]
  91. // CHECK:STDOUT: }
  92. // CHECK:STDOUT:
  93. // CHECK:STDOUT: imports {
  94. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  95. // CHECK:STDOUT: .Int = %Core.Int
  96. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  97. // CHECK:STDOUT: .Destroy = %Core.Destroy
  98. // CHECK:STDOUT: import Core//prelude
  99. // CHECK:STDOUT: import Core//prelude/...
  100. // CHECK:STDOUT: }
  101. // CHECK:STDOUT: %Core.Int: %Int.type = import_ref Core//prelude/parts/int, Int, loaded [concrete = constants.%Int.generic]
  102. // CHECK:STDOUT: %Core.ImplicitAs: %ImplicitAs.type.cc7 = import_ref Core//prelude/parts/as, ImplicitAs, loaded [concrete = constants.%ImplicitAs.generic]
  103. // CHECK:STDOUT: %Core.import_ref.42d: @Core.IntLiteral.as.ImplicitAs.impl.%Core.IntLiteral.as.ImplicitAs.impl.Convert.type (%Core.IntLiteral.as.ImplicitAs.impl.Convert.type.4e6) = import_ref Core//prelude/parts/int, loc{{\d+_\d+}}, loaded [symbolic = @Core.IntLiteral.as.ImplicitAs.impl.%Core.IntLiteral.as.ImplicitAs.impl.Convert (constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.3c2)]
  104. // CHECK:STDOUT: %ImplicitAs.impl_witness_table.74f = impl_witness_table (%Core.import_ref.42d), @Core.IntLiteral.as.ImplicitAs.impl [concrete]
  105. // CHECK:STDOUT: %Core.Destroy: type = import_ref Core//prelude/parts/destroy, Destroy, loaded [concrete = constants.%Destroy.type]
  106. // CHECK:STDOUT: }
  107. // CHECK:STDOUT:
  108. // CHECK:STDOUT: file {
  109. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  110. // CHECK:STDOUT: .Core = imports.%Core
  111. // CHECK:STDOUT: .F = %F.decl
  112. // CHECK:STDOUT: }
  113. // CHECK:STDOUT: %Core.import = import Core
  114. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {} {}
  115. // CHECK:STDOUT: }
  116. // CHECK:STDOUT:
  117. // CHECK:STDOUT: generic class @C(%T.loc5_11.2: type) {
  118. // CHECK:STDOUT: %T.loc5_11.1: type = symbolic_binding T, 0 [symbolic = %T.loc5_11.1 (constants.%T)]
  119. // CHECK:STDOUT:
  120. // CHECK:STDOUT: !definition:
  121. // CHECK:STDOUT: %require_complete: <witness> = require_complete_type %T.loc5_11.1 [symbolic = %require_complete (constants.%require_complete.944)]
  122. // CHECK:STDOUT: %C: type = class_type @C, @C(%T.loc5_11.1) [symbolic = %C (constants.%C.5d4)]
  123. // CHECK:STDOUT: %C.elem: type = unbound_element_type %C, %T.loc5_11.1 [symbolic = %C.elem (constants.%C.elem.d15)]
  124. // CHECK:STDOUT: %struct_type.x: type = struct_type {.x: @C.%T.loc5_11.1 (%T)} [symbolic = %struct_type.x (constants.%struct_type.x.0c5)]
  125. // CHECK:STDOUT: %complete_type.loc7_3.2: <witness> = complete_type_witness %struct_type.x [symbolic = %complete_type.loc7_3.2 (constants.%complete_type.735)]
  126. // CHECK:STDOUT:
  127. // CHECK:STDOUT: class {
  128. // CHECK:STDOUT: %T.ref: type = name_ref T, %T.loc5_11.2 [symbolic = %T.loc5_11.1 (constants.%T)]
  129. // CHECK:STDOUT: %.loc6: @C.%C.elem (%C.elem.d15) = field_decl x, element0 [concrete]
  130. // CHECK:STDOUT: %complete_type.loc7_3.1: <witness> = complete_type_witness constants.%struct_type.x.0c5 [symbolic = %complete_type.loc7_3.2 (constants.%complete_type.735)]
  131. // CHECK:STDOUT: complete_type_witness = %complete_type.loc7_3.1
  132. // CHECK:STDOUT:
  133. // CHECK:STDOUT: !members:
  134. // CHECK:STDOUT: .Self = constants.%C.5d4
  135. // CHECK:STDOUT: .T = <poisoned>
  136. // CHECK:STDOUT: .x = %.loc6
  137. // CHECK:STDOUT: }
  138. // CHECK:STDOUT: }
  139. // CHECK:STDOUT:
  140. // CHECK:STDOUT: fn @F() {
  141. // CHECK:STDOUT: !entry:
  142. // CHECK:STDOUT: %C.decl: %C.type = class_decl @C [concrete = constants.%C.generic] {
  143. // CHECK:STDOUT: %T.patt: %pattern_type.98f = symbolic_binding_pattern T, 0 [concrete]
  144. // CHECK:STDOUT: } {
  145. // CHECK:STDOUT: %.Self: %type = symbolic_binding .Self [symbolic_self = constants.%.Self]
  146. // CHECK:STDOUT: %T.loc5_11.2: type = symbolic_binding T, 0 [symbolic = %T.loc5_11.1 (constants.%T)]
  147. // CHECK:STDOUT: }
  148. // CHECK:STDOUT: name_binding_decl {
  149. // CHECK:STDOUT: %v.patt: %pattern_type.7db = ref_binding_pattern v [concrete]
  150. // CHECK:STDOUT: %v.var_patt: %pattern_type.7db = var_pattern %v.patt [concrete]
  151. // CHECK:STDOUT: }
  152. // CHECK:STDOUT: %v.var: ref %C.d45 = var %v.var_patt
  153. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [concrete = constants.%int_1.5b8]
  154. // CHECK:STDOUT: %.loc8_26.1: %struct_type.x.c96 = struct_literal (%int_1) [concrete = constants.%struct]
  155. // CHECK:STDOUT: %impl.elem0: %.863 = impl_witness_access constants.%ImplicitAs.impl_witness.6bc, element0 [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.0b5]
  156. // CHECK:STDOUT: %bound_method.loc8_26.1: <bound method> = bound_method %int_1, %impl.elem0 [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.bound]
  157. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %impl.elem0, @Core.IntLiteral.as.ImplicitAs.impl.Convert(constants.%int_32) [concrete = constants.%Core.IntLiteral.as.ImplicitAs.impl.Convert.specific_fn]
  158. // CHECK:STDOUT: %bound_method.loc8_26.2: <bound method> = bound_method %int_1, %specific_fn [concrete = constants.%bound_method]
  159. // CHECK:STDOUT: %Core.IntLiteral.as.ImplicitAs.impl.Convert.call: init %i32 = call %bound_method.loc8_26.2(%int_1) [concrete = constants.%int_1.5d2]
  160. // CHECK:STDOUT: %.loc8_26.2: init %i32 = converted %int_1, %Core.IntLiteral.as.ImplicitAs.impl.Convert.call [concrete = constants.%int_1.5d2]
  161. // CHECK:STDOUT: %.loc8_26.3: ref %i32 = class_element_access %v.var, element0
  162. // CHECK:STDOUT: %.loc8_26.4: init %i32 = initialize_from %.loc8_26.2 to %.loc8_26.3 [concrete = constants.%int_1.5d2]
  163. // CHECK:STDOUT: %.loc8_26.5: init %C.d45 = class_init (%.loc8_26.4), %v.var [concrete = constants.%C.val]
  164. // CHECK:STDOUT: %.loc8_3: init %C.d45 = converted %.loc8_26.1, %.loc8_26.5 [concrete = constants.%C.val]
  165. // CHECK:STDOUT: assign %v.var, %.loc8_3
  166. // CHECK:STDOUT: %.loc8_15: type = splice_block %C [concrete = constants.%C.d45] {
  167. // CHECK:STDOUT: %C.ref: %C.type = name_ref C, %C.decl [concrete = constants.%C.generic]
  168. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  169. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  170. // CHECK:STDOUT: %C: type = class_type @C, @C(constants.%i32) [concrete = constants.%C.d45]
  171. // CHECK:STDOUT: }
  172. // CHECK:STDOUT: %v: ref %C.d45 = ref_binding v, %v.var
  173. // CHECK:STDOUT: %DestroyOp.bound: <bound method> = bound_method %v.var, constants.%DestroyOp
  174. // CHECK:STDOUT: %DestroyOp.call: init %empty_tuple.type = call %DestroyOp.bound(%v.var)
  175. // CHECK:STDOUT: return
  176. // CHECK:STDOUT: }
  177. // CHECK:STDOUT:
  178. // CHECK:STDOUT: fn @DestroyOp(%self.param: %C.d45) = "no_op";
  179. // CHECK:STDOUT:
  180. // CHECK:STDOUT: specific @C(constants.%T) {
  181. // CHECK:STDOUT: %T.loc5_11.1 => constants.%T
  182. // CHECK:STDOUT: }
  183. // CHECK:STDOUT:
  184. // CHECK:STDOUT: specific @C(constants.%i32) {
  185. // CHECK:STDOUT: %T.loc5_11.1 => constants.%i32
  186. // CHECK:STDOUT:
  187. // CHECK:STDOUT: !definition:
  188. // CHECK:STDOUT: %require_complete => constants.%complete_type.f8a
  189. // CHECK:STDOUT: %C => constants.%C.d45
  190. // CHECK:STDOUT: %C.elem => constants.%C.elem.f74
  191. // CHECK:STDOUT: %struct_type.x => constants.%struct_type.x.ed6
  192. // CHECK:STDOUT: %complete_type.loc7_3.2 => constants.%complete_type.1ec
  193. // CHECK:STDOUT: }
  194. // CHECK:STDOUT:
  195. // CHECK:STDOUT: --- fail_param_shadows_class.carbon
  196. // CHECK:STDOUT:
  197. // CHECK:STDOUT: constants {
  198. // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
  199. // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
  200. // CHECK:STDOUT: %type: type = facet_type <type> [concrete]
  201. // CHECK:STDOUT: %.Self: %type = symbolic_binding .Self [symbolic_self]
  202. // CHECK:STDOUT: %C.67d: type = symbolic_binding C, 0 [symbolic]
  203. // CHECK:STDOUT: %pattern_type: type = pattern_type type [concrete]
  204. // CHECK:STDOUT: %C.type: type = generic_class_type @C [concrete]
  205. // CHECK:STDOUT: %C.generic: %C.type = struct_value () [concrete]
  206. // CHECK:STDOUT: %C.5d4: type = class_type @C, @C(%C.67d) [symbolic]
  207. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  208. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete]
  209. // CHECK:STDOUT: }
  210. // CHECK:STDOUT:
  211. // CHECK:STDOUT: imports {
  212. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  213. // CHECK:STDOUT: import Core//prelude
  214. // CHECK:STDOUT: import Core//prelude/...
  215. // CHECK:STDOUT: }
  216. // CHECK:STDOUT: }
  217. // CHECK:STDOUT:
  218. // CHECK:STDOUT: file {
  219. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  220. // CHECK:STDOUT: .Core = imports.%Core
  221. // CHECK:STDOUT: .F = %F.decl
  222. // CHECK:STDOUT: }
  223. // CHECK:STDOUT: %Core.import = import Core
  224. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {} {}
  225. // CHECK:STDOUT: }
  226. // CHECK:STDOUT:
  227. // CHECK:STDOUT: generic class @C(%C.loc13_11.2: type) {
  228. // CHECK:STDOUT: %C.loc13_11.1: type = symbolic_binding C, 0 [symbolic = %C.loc13_11.1 (constants.%C.67d)]
  229. // CHECK:STDOUT:
  230. // CHECK:STDOUT: !definition:
  231. // CHECK:STDOUT:
  232. // CHECK:STDOUT: class {
  233. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness constants.%empty_struct_type [concrete = constants.%complete_type]
  234. // CHECK:STDOUT: complete_type_witness = %complete_type
  235. // CHECK:STDOUT:
  236. // CHECK:STDOUT: !members:
  237. // CHECK:STDOUT: .Self = constants.%C.5d4
  238. // CHECK:STDOUT: }
  239. // CHECK:STDOUT: }
  240. // CHECK:STDOUT:
  241. // CHECK:STDOUT: fn @F() {
  242. // CHECK:STDOUT: !entry:
  243. // CHECK:STDOUT: %C.decl: %C.type = class_decl @C [concrete = constants.%C.generic] {
  244. // CHECK:STDOUT: %C.patt: %pattern_type = symbolic_binding_pattern C, 0 [concrete]
  245. // CHECK:STDOUT: } {
  246. // CHECK:STDOUT: %.Self: %type = symbolic_binding .Self [symbolic_self = constants.%.Self]
  247. // CHECK:STDOUT: %C.loc13_11.2: type = symbolic_binding C, 0 [symbolic = %C.loc13_11.1 (constants.%C.67d)]
  248. // CHECK:STDOUT: }
  249. // CHECK:STDOUT: return
  250. // CHECK:STDOUT: }
  251. // CHECK:STDOUT:
  252. // CHECK:STDOUT: specific @C(constants.%C.67d) {
  253. // CHECK:STDOUT: %C.loc13_11.1 => constants.%C.67d
  254. // CHECK:STDOUT: }
  255. // CHECK:STDOUT:
  256. // CHECK:STDOUT: --- nonlocal_param_shadows_class.carbon
  257. // CHECK:STDOUT:
  258. // CHECK:STDOUT: constants {
  259. // CHECK:STDOUT: %type: type = facet_type <type> [concrete]
  260. // CHECK:STDOUT: %.Self: %type = symbolic_binding .Self [symbolic_self]
  261. // CHECK:STDOUT: %C.67d: type = symbolic_binding C, 0 [symbolic]
  262. // CHECK:STDOUT: %pattern_type: type = pattern_type type [concrete]
  263. // CHECK:STDOUT: %C.type: type = generic_class_type @C [concrete]
  264. // CHECK:STDOUT: %C.generic: %C.type = struct_value () [concrete]
  265. // CHECK:STDOUT: %C.5a3: type = class_type @C, @C(%C.67d) [symbolic]
  266. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  267. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete]
  268. // CHECK:STDOUT: }
  269. // CHECK:STDOUT:
  270. // CHECK:STDOUT: imports {
  271. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  272. // CHECK:STDOUT: import Core//prelude
  273. // CHECK:STDOUT: import Core//prelude/...
  274. // CHECK:STDOUT: }
  275. // CHECK:STDOUT: }
  276. // CHECK:STDOUT:
  277. // CHECK:STDOUT: file {
  278. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  279. // CHECK:STDOUT: .Core = imports.%Core
  280. // CHECK:STDOUT: .C = %C.decl
  281. // CHECK:STDOUT: }
  282. // CHECK:STDOUT: %Core.import = import Core
  283. // CHECK:STDOUT: %C.decl: %C.type = class_decl @C [concrete = constants.%C.generic] {
  284. // CHECK:STDOUT: %C.patt: %pattern_type = symbolic_binding_pattern C, 0 [concrete]
  285. // CHECK:STDOUT: } {
  286. // CHECK:STDOUT: %.Self: %type = symbolic_binding .Self [symbolic_self = constants.%.Self]
  287. // CHECK:STDOUT: %C.loc4_9.2: type = symbolic_binding C, 0 [symbolic = %C.loc4_9.1 (constants.%C.67d)]
  288. // CHECK:STDOUT: }
  289. // CHECK:STDOUT: }
  290. // CHECK:STDOUT:
  291. // CHECK:STDOUT: generic class @C(%C.loc4_9.2: type) {
  292. // CHECK:STDOUT: %C.loc4_9.1: type = symbolic_binding C, 0 [symbolic = %C.loc4_9.1 (constants.%C.67d)]
  293. // CHECK:STDOUT:
  294. // CHECK:STDOUT: !definition:
  295. // CHECK:STDOUT:
  296. // CHECK:STDOUT: class {
  297. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness constants.%empty_struct_type [concrete = constants.%complete_type]
  298. // CHECK:STDOUT: complete_type_witness = %complete_type
  299. // CHECK:STDOUT:
  300. // CHECK:STDOUT: !members:
  301. // CHECK:STDOUT: .Self = constants.%C.5a3
  302. // CHECK:STDOUT: }
  303. // CHECK:STDOUT: }
  304. // CHECK:STDOUT:
  305. // CHECK:STDOUT: specific @C(constants.%C.67d) {
  306. // CHECK:STDOUT: %C.loc4_9.1 => constants.%C.67d
  307. // CHECK:STDOUT: }
  308. // CHECK:STDOUT: