syntax.carbon 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327
  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/package_expr/syntax.carbon
  12. // TIP: To dump output, run:
  13. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/package_expr/syntax.carbon
  14. // --- global.carbon
  15. package Global;
  16. var x: i32 = 0;
  17. var y: i32 = package.x;
  18. // --- inside_fn.carbon
  19. package InsideFn;
  20. var x: i32 = 0;
  21. fn Main() {
  22. var x: i32 = 1;
  23. var y: i32 = package.x;
  24. }
  25. // --- namespace.carbon
  26. package Namespace;
  27. namespace NS;
  28. class NS.C {
  29. fn Foo() {}
  30. };
  31. fn Main() {
  32. package.NS.C.Foo();
  33. }
  34. // CHECK:STDOUT: --- global.carbon
  35. // CHECK:STDOUT:
  36. // CHECK:STDOUT: constants {
  37. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  38. // CHECK:STDOUT: %Int.type: type = generic_class_type @Int [concrete]
  39. // CHECK:STDOUT: %Int.generic: %Int.type = struct_value () [concrete]
  40. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  41. // CHECK:STDOUT: %pattern_type.7ce: type = pattern_type %i32 [concrete]
  42. // CHECK:STDOUT: %int_0.5c6: Core.IntLiteral = int_value 0 [concrete]
  43. // CHECK:STDOUT: %ImplicitAs.type.cc7: type = generic_interface_type @ImplicitAs [concrete]
  44. // CHECK:STDOUT: %ImplicitAs.generic: %ImplicitAs.type.cc7 = struct_value () [concrete]
  45. // CHECK:STDOUT: %ImplicitAs.type.205: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [concrete]
  46. // CHECK:STDOUT: %Convert.type.1b6: type = fn_type @Convert.1, @ImplicitAs(%i32) [concrete]
  47. // CHECK:STDOUT: %To: Core.IntLiteral = bind_symbolic_name To, 0 [symbolic]
  48. // CHECK:STDOUT: %Convert.type.0f9: type = fn_type @Convert.2, @ImplicitAs.impl.4f9(%To) [symbolic]
  49. // CHECK:STDOUT: %Convert.f06: %Convert.type.0f9 = struct_value () [symbolic]
  50. // CHECK:STDOUT: %ImplicitAs.impl_witness.c75: <witness> = impl_witness imports.%ImplicitAs.impl_witness_table.a2f, @ImplicitAs.impl.4f9(%int_32) [concrete]
  51. // CHECK:STDOUT: %Convert.type.035: type = fn_type @Convert.2, @ImplicitAs.impl.4f9(%int_32) [concrete]
  52. // CHECK:STDOUT: %Convert.956: %Convert.type.035 = struct_value () [concrete]
  53. // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.205 = facet_value Core.IntLiteral, (%ImplicitAs.impl_witness.c75) [concrete]
  54. // CHECK:STDOUT: %.9c3: type = fn_type_with_self_type %Convert.type.1b6, %ImplicitAs.facet [concrete]
  55. // CHECK:STDOUT: %Convert.bound: <bound method> = bound_method %int_0.5c6, %Convert.956 [concrete]
  56. // CHECK:STDOUT: %Convert.specific_fn: <specific function> = specific_function %Convert.956, @Convert.2(%int_32) [concrete]
  57. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %int_0.5c6, %Convert.specific_fn [concrete]
  58. // CHECK:STDOUT: %int_0.6a9: %i32 = int_value 0 [concrete]
  59. // CHECK:STDOUT: }
  60. // CHECK:STDOUT:
  61. // CHECK:STDOUT: imports {
  62. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  63. // CHECK:STDOUT: .Int = %Core.Int
  64. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  65. // CHECK:STDOUT: import Core//prelude
  66. // CHECK:STDOUT: import Core//prelude/...
  67. // CHECK:STDOUT: }
  68. // CHECK:STDOUT: %Core.Int: %Int.type = import_ref Core//prelude/parts/int, Int, loaded [concrete = constants.%Int.generic]
  69. // CHECK:STDOUT: %Core.ImplicitAs: %ImplicitAs.type.cc7 = import_ref Core//prelude/parts/as, ImplicitAs, loaded [concrete = constants.%ImplicitAs.generic]
  70. // CHECK:STDOUT: %Core.import_ref.a5b: @ImplicitAs.impl.4f9.%Convert.type (%Convert.type.0f9) = import_ref Core//prelude/parts/int, loc16_39, loaded [symbolic = @ImplicitAs.impl.4f9.%Convert (constants.%Convert.f06)]
  71. // CHECK:STDOUT: %ImplicitAs.impl_witness_table.a2f = impl_witness_table (%Core.import_ref.a5b), @ImplicitAs.impl.4f9 [concrete]
  72. // CHECK:STDOUT: }
  73. // CHECK:STDOUT:
  74. // CHECK:STDOUT: file {
  75. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  76. // CHECK:STDOUT: .Core = imports.%Core
  77. // CHECK:STDOUT: .x = %x
  78. // CHECK:STDOUT: .y = %y
  79. // CHECK:STDOUT: }
  80. // CHECK:STDOUT: %Core.import = import Core
  81. // CHECK:STDOUT: name_binding_decl {
  82. // CHECK:STDOUT: %x.patt: %pattern_type.7ce = binding_pattern x [concrete]
  83. // CHECK:STDOUT: %x.var_patt: %pattern_type.7ce = var_pattern %x.patt [concrete]
  84. // CHECK:STDOUT: }
  85. // CHECK:STDOUT: %x.var: ref %i32 = var %x.var_patt [concrete]
  86. // CHECK:STDOUT: %.loc4: type = splice_block %i32.loc4 [concrete = constants.%i32] {
  87. // CHECK:STDOUT: %int_32.loc4: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  88. // CHECK:STDOUT: %i32.loc4: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  89. // CHECK:STDOUT: }
  90. // CHECK:STDOUT: %x: ref %i32 = bind_name x, %x.var [concrete = %x.var]
  91. // CHECK:STDOUT: name_binding_decl {
  92. // CHECK:STDOUT: %y.patt: %pattern_type.7ce = binding_pattern y [concrete]
  93. // CHECK:STDOUT: %y.var_patt: %pattern_type.7ce = var_pattern %y.patt [concrete]
  94. // CHECK:STDOUT: }
  95. // CHECK:STDOUT: %y.var: ref %i32 = var %y.var_patt [concrete]
  96. // CHECK:STDOUT: %.loc5: type = splice_block %i32.loc5 [concrete = constants.%i32] {
  97. // CHECK:STDOUT: %int_32.loc5: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  98. // CHECK:STDOUT: %i32.loc5: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  99. // CHECK:STDOUT: }
  100. // CHECK:STDOUT: %y: ref %i32 = bind_name y, %y.var [concrete = %y.var]
  101. // CHECK:STDOUT: }
  102. // CHECK:STDOUT:
  103. // CHECK:STDOUT: fn @__global_init() {
  104. // CHECK:STDOUT: !entry:
  105. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [concrete = constants.%int_0.5c6]
  106. // CHECK:STDOUT: %impl.elem0: %.9c3 = impl_witness_access constants.%ImplicitAs.impl_witness.c75, element0 [concrete = constants.%Convert.956]
  107. // CHECK:STDOUT: %bound_method.loc4_1.1: <bound method> = bound_method %int_0, %impl.elem0 [concrete = constants.%Convert.bound]
  108. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %impl.elem0, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  109. // CHECK:STDOUT: %bound_method.loc4_1.2: <bound method> = bound_method %int_0, %specific_fn [concrete = constants.%bound_method]
  110. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %bound_method.loc4_1.2(%int_0) [concrete = constants.%int_0.6a9]
  111. // CHECK:STDOUT: %.loc4: init %i32 = converted %int_0, %int.convert_checked [concrete = constants.%int_0.6a9]
  112. // CHECK:STDOUT: assign file.%x.var, %.loc4
  113. // CHECK:STDOUT: %package.ref: <namespace> = name_ref package, package [concrete = package]
  114. // CHECK:STDOUT: %x.ref: ref %i32 = name_ref x, file.%x [concrete = file.%x.var]
  115. // CHECK:STDOUT: %.loc5: %i32 = bind_value %x.ref
  116. // CHECK:STDOUT: assign file.%y.var, %.loc5
  117. // CHECK:STDOUT: return
  118. // CHECK:STDOUT: }
  119. // CHECK:STDOUT:
  120. // CHECK:STDOUT: --- inside_fn.carbon
  121. // CHECK:STDOUT:
  122. // CHECK:STDOUT: constants {
  123. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete]
  124. // CHECK:STDOUT: %Int.type: type = generic_class_type @Int [concrete]
  125. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  126. // CHECK:STDOUT: %Int.generic: %Int.type = struct_value () [concrete]
  127. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(%int_32) [concrete]
  128. // CHECK:STDOUT: %pattern_type.7ce: type = pattern_type %i32 [concrete]
  129. // CHECK:STDOUT: %int_0.5c6: Core.IntLiteral = int_value 0 [concrete]
  130. // CHECK:STDOUT: %ImplicitAs.type.cc7: type = generic_interface_type @ImplicitAs [concrete]
  131. // CHECK:STDOUT: %ImplicitAs.generic: %ImplicitAs.type.cc7 = struct_value () [concrete]
  132. // CHECK:STDOUT: %ImplicitAs.type.205: type = facet_type <@ImplicitAs, @ImplicitAs(%i32)> [concrete]
  133. // CHECK:STDOUT: %Convert.type.1b6: type = fn_type @Convert.1, @ImplicitAs(%i32) [concrete]
  134. // CHECK:STDOUT: %To: Core.IntLiteral = bind_symbolic_name To, 0 [symbolic]
  135. // CHECK:STDOUT: %Convert.type.0f9: type = fn_type @Convert.2, @ImplicitAs.impl.4f9(%To) [symbolic]
  136. // CHECK:STDOUT: %Convert.f06: %Convert.type.0f9 = struct_value () [symbolic]
  137. // CHECK:STDOUT: %ImplicitAs.impl_witness.c75: <witness> = impl_witness imports.%ImplicitAs.impl_witness_table.a2f, @ImplicitAs.impl.4f9(%int_32) [concrete]
  138. // CHECK:STDOUT: %Convert.type.035: type = fn_type @Convert.2, @ImplicitAs.impl.4f9(%int_32) [concrete]
  139. // CHECK:STDOUT: %Convert.956: %Convert.type.035 = struct_value () [concrete]
  140. // CHECK:STDOUT: %ImplicitAs.facet: %ImplicitAs.type.205 = facet_value Core.IntLiteral, (%ImplicitAs.impl_witness.c75) [concrete]
  141. // CHECK:STDOUT: %.9c3: type = fn_type_with_self_type %Convert.type.1b6, %ImplicitAs.facet [concrete]
  142. // CHECK:STDOUT: %Convert.bound.d04: <bound method> = bound_method %int_0.5c6, %Convert.956 [concrete]
  143. // CHECK:STDOUT: %Convert.specific_fn: <specific function> = specific_function %Convert.956, @Convert.2(%int_32) [concrete]
  144. // CHECK:STDOUT: %bound_method.b6e: <bound method> = bound_method %int_0.5c6, %Convert.specific_fn [concrete]
  145. // CHECK:STDOUT: %int_0.6a9: %i32 = int_value 0 [concrete]
  146. // CHECK:STDOUT: %Main.type: type = fn_type @Main [concrete]
  147. // CHECK:STDOUT: %Main: %Main.type = struct_value () [concrete]
  148. // CHECK:STDOUT: %int_1.5b8: Core.IntLiteral = int_value 1 [concrete]
  149. // CHECK:STDOUT: %Convert.bound.ab5: <bound method> = bound_method %int_1.5b8, %Convert.956 [concrete]
  150. // CHECK:STDOUT: %bound_method.9a1: <bound method> = bound_method %int_1.5b8, %Convert.specific_fn [concrete]
  151. // CHECK:STDOUT: %int_1.5d2: %i32 = int_value 1 [concrete]
  152. // CHECK:STDOUT: %Destroy.type: type = facet_type <@Destroy> [concrete]
  153. // CHECK:STDOUT: %Op.type.a17: type = fn_type @Op.3, @Destroy.impl(%i32) [concrete]
  154. // CHECK:STDOUT: %Op.e6a: %Op.type.a17 = struct_value () [concrete]
  155. // CHECK:STDOUT: %ptr.235: type = ptr_type %i32 [concrete]
  156. // CHECK:STDOUT: %Op.specific_fn: <specific function> = specific_function %Op.e6a, @Op.3(%i32) [concrete]
  157. // CHECK:STDOUT: }
  158. // CHECK:STDOUT:
  159. // CHECK:STDOUT: imports {
  160. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  161. // CHECK:STDOUT: .Int = %Core.Int
  162. // CHECK:STDOUT: .ImplicitAs = %Core.ImplicitAs
  163. // CHECK:STDOUT: .Destroy = %Core.Destroy
  164. // CHECK:STDOUT: import Core//prelude
  165. // CHECK:STDOUT: import Core//prelude/...
  166. // CHECK:STDOUT: }
  167. // CHECK:STDOUT: %Core.Int: %Int.type = import_ref Core//prelude/parts/int, Int, loaded [concrete = constants.%Int.generic]
  168. // CHECK:STDOUT: %Core.ImplicitAs: %ImplicitAs.type.cc7 = import_ref Core//prelude/parts/as, ImplicitAs, loaded [concrete = constants.%ImplicitAs.generic]
  169. // CHECK:STDOUT: %Core.import_ref.a5b: @ImplicitAs.impl.4f9.%Convert.type (%Convert.type.0f9) = import_ref Core//prelude/parts/int, loc16_39, loaded [symbolic = @ImplicitAs.impl.4f9.%Convert (constants.%Convert.f06)]
  170. // CHECK:STDOUT: %ImplicitAs.impl_witness_table.a2f = impl_witness_table (%Core.import_ref.a5b), @ImplicitAs.impl.4f9 [concrete]
  171. // CHECK:STDOUT: %Core.Destroy: type = import_ref Core//prelude/parts/destroy, Destroy, loaded [concrete = constants.%Destroy.type]
  172. // CHECK:STDOUT: }
  173. // CHECK:STDOUT:
  174. // CHECK:STDOUT: file {
  175. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  176. // CHECK:STDOUT: .Core = imports.%Core
  177. // CHECK:STDOUT: .x = %x
  178. // CHECK:STDOUT: .Main = %Main.decl
  179. // CHECK:STDOUT: }
  180. // CHECK:STDOUT: %Core.import = import Core
  181. // CHECK:STDOUT: name_binding_decl {
  182. // CHECK:STDOUT: %x.patt: %pattern_type.7ce = binding_pattern x [concrete]
  183. // CHECK:STDOUT: %x.var_patt: %pattern_type.7ce = var_pattern %x.patt [concrete]
  184. // CHECK:STDOUT: }
  185. // CHECK:STDOUT: %x.var: ref %i32 = var %x.var_patt [concrete]
  186. // CHECK:STDOUT: %.loc4: type = splice_block %i32 [concrete = constants.%i32] {
  187. // CHECK:STDOUT: %int_32: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  188. // CHECK:STDOUT: %i32: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  189. // CHECK:STDOUT: }
  190. // CHECK:STDOUT: %x: ref %i32 = bind_name x, %x.var [concrete = %x.var]
  191. // CHECK:STDOUT: %Main.decl: %Main.type = fn_decl @Main [concrete = constants.%Main] {} {}
  192. // CHECK:STDOUT: }
  193. // CHECK:STDOUT:
  194. // CHECK:STDOUT: fn @Main() {
  195. // CHECK:STDOUT: !entry:
  196. // CHECK:STDOUT: name_binding_decl {
  197. // CHECK:STDOUT: %x.patt: %pattern_type.7ce = binding_pattern x [concrete]
  198. // CHECK:STDOUT: %x.var_patt: %pattern_type.7ce = var_pattern %x.patt [concrete]
  199. // CHECK:STDOUT: }
  200. // CHECK:STDOUT: %x.var: ref %i32 = var %x.var_patt
  201. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [concrete = constants.%int_1.5b8]
  202. // CHECK:STDOUT: %impl.elem0: %.9c3 = impl_witness_access constants.%ImplicitAs.impl_witness.c75, element0 [concrete = constants.%Convert.956]
  203. // CHECK:STDOUT: %bound_method.loc7_3.1: <bound method> = bound_method %int_1, %impl.elem0 [concrete = constants.%Convert.bound.ab5]
  204. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %impl.elem0, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  205. // CHECK:STDOUT: %bound_method.loc7_3.2: <bound method> = bound_method %int_1, %specific_fn [concrete = constants.%bound_method.9a1]
  206. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %bound_method.loc7_3.2(%int_1) [concrete = constants.%int_1.5d2]
  207. // CHECK:STDOUT: %.loc7_3: init %i32 = converted %int_1, %int.convert_checked [concrete = constants.%int_1.5d2]
  208. // CHECK:STDOUT: assign %x.var, %.loc7_3
  209. // CHECK:STDOUT: %.loc7_10: type = splice_block %i32.loc7 [concrete = constants.%i32] {
  210. // CHECK:STDOUT: %int_32.loc7: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  211. // CHECK:STDOUT: %i32.loc7: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  212. // CHECK:STDOUT: }
  213. // CHECK:STDOUT: %x: ref %i32 = bind_name x, %x.var
  214. // CHECK:STDOUT: name_binding_decl {
  215. // CHECK:STDOUT: %y.patt: %pattern_type.7ce = binding_pattern y [concrete]
  216. // CHECK:STDOUT: %y.var_patt: %pattern_type.7ce = var_pattern %y.patt [concrete]
  217. // CHECK:STDOUT: }
  218. // CHECK:STDOUT: %y.var: ref %i32 = var %y.var_patt
  219. // CHECK:STDOUT: %package.ref: <namespace> = name_ref package, package [concrete = package]
  220. // CHECK:STDOUT: %x.ref: ref %i32 = name_ref x, file.%x [concrete = file.%x.var]
  221. // CHECK:STDOUT: %.loc9_23: %i32 = bind_value %x.ref
  222. // CHECK:STDOUT: assign %y.var, %.loc9_23
  223. // CHECK:STDOUT: %.loc9_10: type = splice_block %i32.loc9 [concrete = constants.%i32] {
  224. // CHECK:STDOUT: %int_32.loc9: Core.IntLiteral = int_value 32 [concrete = constants.%int_32]
  225. // CHECK:STDOUT: %i32.loc9: type = class_type @Int, @Int(constants.%int_32) [concrete = constants.%i32]
  226. // CHECK:STDOUT: }
  227. // CHECK:STDOUT: %y: ref %i32 = bind_name y, %y.var
  228. // CHECK:STDOUT: %Op.bound.loc9: <bound method> = bound_method %y.var, constants.%Op.e6a
  229. // CHECK:STDOUT: %Op.specific_fn.1: <specific function> = specific_function constants.%Op.e6a, @Op.3(constants.%i32) [concrete = constants.%Op.specific_fn]
  230. // CHECK:STDOUT: %bound_method.loc9: <bound method> = bound_method %y.var, %Op.specific_fn.1
  231. // CHECK:STDOUT: %addr.loc9: %ptr.235 = addr_of %y.var
  232. // CHECK:STDOUT: %no_op.loc9: init %empty_tuple.type = call %bound_method.loc9(%addr.loc9)
  233. // CHECK:STDOUT: %Op.bound.loc7: <bound method> = bound_method %x.var, constants.%Op.e6a
  234. // CHECK:STDOUT: %Op.specific_fn.2: <specific function> = specific_function constants.%Op.e6a, @Op.3(constants.%i32) [concrete = constants.%Op.specific_fn]
  235. // CHECK:STDOUT: %bound_method.loc7_3.3: <bound method> = bound_method %x.var, %Op.specific_fn.2
  236. // CHECK:STDOUT: %addr.loc7: %ptr.235 = addr_of %x.var
  237. // CHECK:STDOUT: %no_op.loc7: init %empty_tuple.type = call %bound_method.loc7_3.3(%addr.loc7)
  238. // CHECK:STDOUT: return
  239. // CHECK:STDOUT: }
  240. // CHECK:STDOUT:
  241. // CHECK:STDOUT: fn @__global_init() {
  242. // CHECK:STDOUT: !entry:
  243. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [concrete = constants.%int_0.5c6]
  244. // CHECK:STDOUT: %impl.elem0: %.9c3 = impl_witness_access constants.%ImplicitAs.impl_witness.c75, element0 [concrete = constants.%Convert.956]
  245. // CHECK:STDOUT: %bound_method.loc4_1.1: <bound method> = bound_method %int_0, %impl.elem0 [concrete = constants.%Convert.bound.d04]
  246. // CHECK:STDOUT: %specific_fn: <specific function> = specific_function %impl.elem0, @Convert.2(constants.%int_32) [concrete = constants.%Convert.specific_fn]
  247. // CHECK:STDOUT: %bound_method.loc4_1.2: <bound method> = bound_method %int_0, %specific_fn [concrete = constants.%bound_method.b6e]
  248. // CHECK:STDOUT: %int.convert_checked: init %i32 = call %bound_method.loc4_1.2(%int_0) [concrete = constants.%int_0.6a9]
  249. // CHECK:STDOUT: %.loc4: init %i32 = converted %int_0, %int.convert_checked [concrete = constants.%int_0.6a9]
  250. // CHECK:STDOUT: assign file.%x.var, %.loc4
  251. // CHECK:STDOUT: return
  252. // CHECK:STDOUT: }
  253. // CHECK:STDOUT:
  254. // CHECK:STDOUT: --- namespace.carbon
  255. // CHECK:STDOUT:
  256. // CHECK:STDOUT: constants {
  257. // CHECK:STDOUT: %C: type = class_type @C [concrete]
  258. // CHECK:STDOUT: %Foo.type: type = fn_type @Foo [concrete]
  259. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
  260. // CHECK:STDOUT: %Foo: %Foo.type = struct_value () [concrete]
  261. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete]
  262. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete]
  263. // CHECK:STDOUT: %Main.type: type = fn_type @Main [concrete]
  264. // CHECK:STDOUT: %Main: %Main.type = struct_value () [concrete]
  265. // CHECK:STDOUT: }
  266. // CHECK:STDOUT:
  267. // CHECK:STDOUT: imports {
  268. // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [concrete] {
  269. // CHECK:STDOUT: import Core//prelude
  270. // CHECK:STDOUT: import Core//prelude/...
  271. // CHECK:STDOUT: }
  272. // CHECK:STDOUT: }
  273. // CHECK:STDOUT:
  274. // CHECK:STDOUT: file {
  275. // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
  276. // CHECK:STDOUT: .Core = imports.%Core
  277. // CHECK:STDOUT: .NS = %NS
  278. // CHECK:STDOUT: .Main = %Main.decl
  279. // CHECK:STDOUT: }
  280. // CHECK:STDOUT: %Core.import = import Core
  281. // CHECK:STDOUT: %NS: <namespace> = namespace [concrete] {
  282. // CHECK:STDOUT: .C = %C.decl
  283. // CHECK:STDOUT: }
  284. // CHECK:STDOUT: %C.decl: type = class_decl @C [concrete = constants.%C] {} {}
  285. // CHECK:STDOUT: %Main.decl: %Main.type = fn_decl @Main [concrete = constants.%Main] {} {}
  286. // CHECK:STDOUT: }
  287. // CHECK:STDOUT:
  288. // CHECK:STDOUT: class @C {
  289. // CHECK:STDOUT: %Foo.decl: %Foo.type = fn_decl @Foo [concrete = constants.%Foo] {} {}
  290. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [concrete = constants.%empty_struct_type]
  291. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [concrete = constants.%complete_type]
  292. // CHECK:STDOUT: complete_type_witness = %complete_type
  293. // CHECK:STDOUT:
  294. // CHECK:STDOUT: !members:
  295. // CHECK:STDOUT: .Self = constants.%C
  296. // CHECK:STDOUT: .Foo = %Foo.decl
  297. // CHECK:STDOUT: }
  298. // CHECK:STDOUT:
  299. // CHECK:STDOUT: fn @Foo() {
  300. // CHECK:STDOUT: !entry:
  301. // CHECK:STDOUT: return
  302. // CHECK:STDOUT: }
  303. // CHECK:STDOUT:
  304. // CHECK:STDOUT: fn @Main() {
  305. // CHECK:STDOUT: !entry:
  306. // CHECK:STDOUT: %package.ref: <namespace> = name_ref package, package [concrete = package]
  307. // CHECK:STDOUT: %NS.ref: <namespace> = name_ref NS, file.%NS [concrete = file.%NS]
  308. // CHECK:STDOUT: %C.ref: type = name_ref C, file.%C.decl [concrete = constants.%C]
  309. // CHECK:STDOUT: %Foo.ref: %Foo.type = name_ref Foo, @C.%Foo.decl [concrete = constants.%Foo]
  310. // CHECK:STDOUT: %Foo.call: init %empty_tuple.type = call %Foo.ref()
  311. // CHECK:STDOUT: return
  312. // CHECK:STDOUT: }
  313. // CHECK:STDOUT: