index.carbon 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // AUTOUPDATE
  6. // TIP: To test this file alone, run:
  7. // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/operators/overloaded/no_prelude/index.carbon
  8. // TIP: To dump output, run:
  9. // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/operators/overloaded/no_prelude/index.carbon
  10. // --- fail_wrong_index_with.carbon
  11. library "[[@TEST_NAME]]";
  12. namespace Core;
  13. class Core.IndexWith {}
  14. // CHECK:STDERR: fail_wrong_index_with.carbon:[[@LINE+4]]:10: error: type `Core.IntLiteral` does not support indexing [TypeNotIndexable]
  15. // CHECK:STDERR: fn F() { 0[1]; }
  16. // CHECK:STDERR: ^~~~
  17. // CHECK:STDERR:
  18. fn F() { 0[1]; }
  19. // --- fail_missing_index_with.carbon
  20. library "[[@TEST_NAME]]";
  21. // CHECK:STDERR: fail_missing_index_with.carbon:[[@LINE+8]]:10: error: `Core.IndexWith` implicitly referenced here, but package `Core` not found [CoreNotFound]
  22. // CHECK:STDERR: fn F() { 0[1]; }
  23. // CHECK:STDERR: ^~~~
  24. // CHECK:STDERR:
  25. // CHECK:STDERR: fail_missing_index_with.carbon:[[@LINE+4]]:10: error: type `Core.IntLiteral` does not support indexing [TypeNotIndexable]
  26. // CHECK:STDERR: fn F() { 0[1]; }
  27. // CHECK:STDERR: ^~~~
  28. // CHECK:STDERR:
  29. fn F() { 0[1]; }
  30. // --- wrong_arg_count.carbon
  31. library "[[@TEST_NAME]]";
  32. namespace Core;
  33. interface Core.IndexWith(SubscriptType:! type) {
  34. fn At[self: Self](subscript: SubscriptType) -> ();
  35. }
  36. impl () as Core.IndexWith(()) {
  37. fn At[self: Self](subscript: ()) -> () {
  38. return ();
  39. }
  40. }
  41. fn F() { ()[()]; }
  42. // CHECK:STDOUT: --- fail_wrong_index_with.carbon
  43. // CHECK:STDOUT:
  44. // CHECK:STDOUT: constants {
  45. // CHECK:STDOUT: %IndexWith: type = class_type @IndexWith [template]
  46. // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [template]
  47. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [template]
  48. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  49. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  50. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [template]
  51. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template]
  52. // CHECK:STDOUT: }
  53. // CHECK:STDOUT:
  54. // CHECK:STDOUT: file {
  55. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  56. // CHECK:STDOUT: .Core = %Core
  57. // CHECK:STDOUT: .F = %F.decl
  58. // CHECK:STDOUT: }
  59. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {
  60. // CHECK:STDOUT: .IndexWith = %IndexWith.decl
  61. // CHECK:STDOUT: }
  62. // CHECK:STDOUT: %IndexWith.decl: type = class_decl @IndexWith [template = constants.%IndexWith] {} {}
  63. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {} {}
  64. // CHECK:STDOUT: }
  65. // CHECK:STDOUT:
  66. // CHECK:STDOUT: class @IndexWith {
  67. // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [template = constants.%complete_type]
  68. // CHECK:STDOUT: complete_type_witness = %complete_type
  69. // CHECK:STDOUT:
  70. // CHECK:STDOUT: !members:
  71. // CHECK:STDOUT: .Self = constants.%IndexWith
  72. // CHECK:STDOUT: }
  73. // CHECK:STDOUT:
  74. // CHECK:STDOUT: fn @F() {
  75. // CHECK:STDOUT: !entry:
  76. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [template = constants.%int_0]
  77. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template = constants.%int_1]
  78. // CHECK:STDOUT: return
  79. // CHECK:STDOUT: }
  80. // CHECK:STDOUT:
  81. // CHECK:STDOUT: --- fail_missing_index_with.carbon
  82. // CHECK:STDOUT:
  83. // CHECK:STDOUT: constants {
  84. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  85. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  86. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [template]
  87. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template]
  88. // CHECK:STDOUT: }
  89. // CHECK:STDOUT:
  90. // CHECK:STDOUT: file {
  91. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  92. // CHECK:STDOUT: .F = %F.decl
  93. // CHECK:STDOUT: }
  94. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {} {}
  95. // CHECK:STDOUT: }
  96. // CHECK:STDOUT:
  97. // CHECK:STDOUT: fn @F() {
  98. // CHECK:STDOUT: !entry:
  99. // CHECK:STDOUT: %int_0: Core.IntLiteral = int_value 0 [template = constants.%int_0]
  100. // CHECK:STDOUT: %int_1: Core.IntLiteral = int_value 1 [template = constants.%int_1]
  101. // CHECK:STDOUT: return
  102. // CHECK:STDOUT: }
  103. // CHECK:STDOUT:
  104. // CHECK:STDOUT: --- wrong_arg_count.carbon
  105. // CHECK:STDOUT:
  106. // CHECK:STDOUT: constants {
  107. // CHECK:STDOUT: %SubscriptType: type = bind_symbolic_name SubscriptType, 0 [symbolic]
  108. // CHECK:STDOUT: %SubscriptType.patt: type = symbolic_binding_pattern SubscriptType, 0 [symbolic]
  109. // CHECK:STDOUT: %IndexWith.type.232: type = generic_interface_type @IndexWith [template]
  110. // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [template]
  111. // CHECK:STDOUT: %IndexWith.generic: %IndexWith.type.232 = struct_value () [template]
  112. // CHECK:STDOUT: %IndexWith.type.518: type = facet_type <@IndexWith, @IndexWith(%SubscriptType)> [symbolic]
  113. // CHECK:STDOUT: %Self: %IndexWith.type.518 = bind_symbolic_name Self, 1 [symbolic]
  114. // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self [symbolic]
  115. // CHECK:STDOUT: %At.type.b28: type = fn_type @At.1, @IndexWith(%SubscriptType) [symbolic]
  116. // CHECK:STDOUT: %At.921: %At.type.b28 = struct_value () [symbolic]
  117. // CHECK:STDOUT: %IndexWith.assoc_type.c82: type = assoc_entity_type %IndexWith.type.518 [symbolic]
  118. // CHECK:STDOUT: %assoc0.d63: %IndexWith.assoc_type.c82 = assoc_entity element0, @IndexWith.%At.decl [symbolic]
  119. // CHECK:STDOUT: %IndexWith.type.4ab: type = facet_type <@IndexWith, @IndexWith(%empty_tuple.type)> [template]
  120. // CHECK:STDOUT: %At.type.082: type = fn_type @At.1, @IndexWith(%empty_tuple.type) [template]
  121. // CHECK:STDOUT: %At.d80: %At.type.082 = struct_value () [template]
  122. // CHECK:STDOUT: %IndexWith.assoc_type.81e: type = assoc_entity_type %IndexWith.type.4ab [template]
  123. // CHECK:STDOUT: %assoc0.5bc: %IndexWith.assoc_type.81e = assoc_entity element0, @IndexWith.%At.decl [template]
  124. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (@impl.%At.decl) [template]
  125. // CHECK:STDOUT: %At.type.8fc: type = fn_type @At.2 [template]
  126. // CHECK:STDOUT: %At.8ba: %At.type.8fc = struct_value () [template]
  127. // CHECK:STDOUT: %IndexWith.facet: %IndexWith.type.4ab = facet_value %empty_tuple.type, %impl_witness [template]
  128. // CHECK:STDOUT: %empty_tuple: %empty_tuple.type = tuple_value () [template]
  129. // CHECK:STDOUT: %F.type: type = fn_type @F [template]
  130. // CHECK:STDOUT: %F: %F.type = struct_value () [template]
  131. // CHECK:STDOUT: %.b91: type = fn_type_with_self_type %At.type.082, %IndexWith.facet [template]
  132. // CHECK:STDOUT: %At.bound: <bound method> = bound_method %empty_tuple, %At.8ba [template]
  133. // CHECK:STDOUT: }
  134. // CHECK:STDOUT:
  135. // CHECK:STDOUT: file {
  136. // CHECK:STDOUT: package: <namespace> = namespace [template] {
  137. // CHECK:STDOUT: .Core = %Core
  138. // CHECK:STDOUT: .F = %F.decl
  139. // CHECK:STDOUT: }
  140. // CHECK:STDOUT: %Core: <namespace> = namespace [template] {
  141. // CHECK:STDOUT: .IndexWith = %IndexWith.decl
  142. // CHECK:STDOUT: }
  143. // CHECK:STDOUT: %IndexWith.decl: %IndexWith.type.232 = interface_decl @IndexWith [template = constants.%IndexWith.generic] {
  144. // CHECK:STDOUT: %SubscriptType.patt.loc5_26.1: type = symbolic_binding_pattern SubscriptType, 0 [symbolic = %SubscriptType.patt.loc5_26.2 (constants.%SubscriptType.patt)]
  145. // CHECK:STDOUT: %SubscriptType.param_patt: type = value_param_pattern %SubscriptType.patt.loc5_26.1, runtime_param<none> [symbolic = %SubscriptType.patt.loc5_26.2 (constants.%SubscriptType.patt)]
  146. // CHECK:STDOUT: } {
  147. // CHECK:STDOUT: %SubscriptType.param: type = value_param runtime_param<none>
  148. // CHECK:STDOUT: %SubscriptType.loc5_26.1: type = bind_symbolic_name SubscriptType, 0, %SubscriptType.param [symbolic = %SubscriptType.loc5_26.2 (constants.%SubscriptType)]
  149. // CHECK:STDOUT: }
  150. // CHECK:STDOUT: impl_decl @impl [template] {} {
  151. // CHECK:STDOUT: %.loc9_7.1: %empty_tuple.type = tuple_literal ()
  152. // CHECK:STDOUT: %.loc9_7.2: type = converted %.loc9_7.1, constants.%empty_tuple.type [template = constants.%empty_tuple.type]
  153. // CHECK:STDOUT: %Core.ref: <namespace> = name_ref Core, file.%Core [template = file.%Core]
  154. // CHECK:STDOUT: %IndexWith.ref: %IndexWith.type.232 = name_ref IndexWith, file.%IndexWith.decl [template = constants.%IndexWith.generic]
  155. // CHECK:STDOUT: %.loc9_28: %empty_tuple.type = tuple_literal ()
  156. // CHECK:STDOUT: %.loc9_29: type = converted %.loc9_28, constants.%empty_tuple.type [template = constants.%empty_tuple.type]
  157. // CHECK:STDOUT: %IndexWith.type: type = facet_type <@IndexWith, @IndexWith(constants.%empty_tuple.type)> [template = constants.%IndexWith.type.4ab]
  158. // CHECK:STDOUT: }
  159. // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (@impl.%At.decl) [template = constants.%impl_witness]
  160. // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {} {}
  161. // CHECK:STDOUT: }
  162. // CHECK:STDOUT:
  163. // CHECK:STDOUT: generic interface @IndexWith(%SubscriptType.loc5_26.1: type) {
  164. // CHECK:STDOUT: %SubscriptType.loc5_26.2: type = bind_symbolic_name SubscriptType, 0 [symbolic = %SubscriptType.loc5_26.2 (constants.%SubscriptType)]
  165. // CHECK:STDOUT: %SubscriptType.patt.loc5_26.2: type = symbolic_binding_pattern SubscriptType, 0 [symbolic = %SubscriptType.patt.loc5_26.2 (constants.%SubscriptType.patt)]
  166. // CHECK:STDOUT:
  167. // CHECK:STDOUT: !definition:
  168. // CHECK:STDOUT: %IndexWith.type: type = facet_type <@IndexWith, @IndexWith(%SubscriptType.loc5_26.2)> [symbolic = %IndexWith.type (constants.%IndexWith.type.518)]
  169. // CHECK:STDOUT: %Self.2: %IndexWith.type.518 = bind_symbolic_name Self, 1 [symbolic = %Self.2 (constants.%Self)]
  170. // CHECK:STDOUT: %At.type: type = fn_type @At.1, @IndexWith(%SubscriptType.loc5_26.2) [symbolic = %At.type (constants.%At.type.b28)]
  171. // CHECK:STDOUT: %At: @IndexWith.%At.type (%At.type.b28) = struct_value () [symbolic = %At (constants.%At.921)]
  172. // CHECK:STDOUT: %IndexWith.assoc_type: type = assoc_entity_type @IndexWith.%IndexWith.type (%IndexWith.type.518) [symbolic = %IndexWith.assoc_type (constants.%IndexWith.assoc_type.c82)]
  173. // CHECK:STDOUT: %assoc0.loc6_52.2: @IndexWith.%IndexWith.assoc_type (%IndexWith.assoc_type.c82) = assoc_entity element0, %At.decl [symbolic = %assoc0.loc6_52.2 (constants.%assoc0.d63)]
  174. // CHECK:STDOUT:
  175. // CHECK:STDOUT: interface {
  176. // CHECK:STDOUT: %Self.1: @IndexWith.%IndexWith.type (%IndexWith.type.518) = bind_symbolic_name Self, 1 [symbolic = %Self.2 (constants.%Self)]
  177. // CHECK:STDOUT: %At.decl: @IndexWith.%At.type (%At.type.b28) = fn_decl @At.1 [symbolic = @IndexWith.%At (constants.%At.921)] {
  178. // CHECK:STDOUT: %self.patt: @At.1.%Self.as_type.loc6_15.1 (%Self.as_type) = binding_pattern self
  179. // CHECK:STDOUT: %self.param_patt: @At.1.%Self.as_type.loc6_15.1 (%Self.as_type) = value_param_pattern %self.patt, runtime_param0
  180. // CHECK:STDOUT: %subscript.patt: @At.1.%SubscriptType (%SubscriptType) = binding_pattern subscript
  181. // CHECK:STDOUT: %subscript.param_patt: @At.1.%SubscriptType (%SubscriptType) = value_param_pattern %subscript.patt, runtime_param1
  182. // CHECK:STDOUT: %return.patt: %empty_tuple.type = return_slot_pattern
  183. // CHECK:STDOUT: %return.param_patt: %empty_tuple.type = out_param_pattern %return.patt, runtime_param2
  184. // CHECK:STDOUT: } {
  185. // CHECK:STDOUT: %.loc6_51.1: %empty_tuple.type = tuple_literal ()
  186. // CHECK:STDOUT: %.loc6_51.2: type = converted %.loc6_51.1, constants.%empty_tuple.type [template = constants.%empty_tuple.type]
  187. // CHECK:STDOUT: %self.param: @At.1.%Self.as_type.loc6_15.1 (%Self.as_type) = value_param runtime_param0
  188. // CHECK:STDOUT: %.loc6_15.1: type = splice_block %.loc6_15.3 [symbolic = %Self.as_type.loc6_15.1 (constants.%Self.as_type)] {
  189. // CHECK:STDOUT: %.loc6_15.2: @At.1.%IndexWith.type (%IndexWith.type.518) = specific_constant @IndexWith.%Self.1, @IndexWith(constants.%SubscriptType) [symbolic = %Self (constants.%Self)]
  190. // CHECK:STDOUT: %Self.ref: @At.1.%IndexWith.type (%IndexWith.type.518) = name_ref Self, %.loc6_15.2 [symbolic = %Self (constants.%Self)]
  191. // CHECK:STDOUT: %Self.as_type.loc6_15.2: type = facet_access_type %Self.ref [symbolic = %Self.as_type.loc6_15.1 (constants.%Self.as_type)]
  192. // CHECK:STDOUT: %.loc6_15.3: type = converted %Self.ref, %Self.as_type.loc6_15.2 [symbolic = %Self.as_type.loc6_15.1 (constants.%Self.as_type)]
  193. // CHECK:STDOUT: }
  194. // CHECK:STDOUT: %self: @At.1.%Self.as_type.loc6_15.1 (%Self.as_type) = bind_name self, %self.param
  195. // CHECK:STDOUT: %subscript.param: @At.1.%SubscriptType (%SubscriptType) = value_param runtime_param1
  196. // CHECK:STDOUT: %SubscriptType.ref: type = name_ref SubscriptType, @IndexWith.%SubscriptType.loc5_26.1 [symbolic = %SubscriptType (constants.%SubscriptType)]
  197. // CHECK:STDOUT: %subscript: @At.1.%SubscriptType (%SubscriptType) = bind_name subscript, %subscript.param
  198. // CHECK:STDOUT: %return.param: ref %empty_tuple.type = out_param runtime_param2
  199. // CHECK:STDOUT: %return: ref %empty_tuple.type = return_slot %return.param
  200. // CHECK:STDOUT: }
  201. // CHECK:STDOUT: %assoc0.loc6_52.1: @IndexWith.%IndexWith.assoc_type (%IndexWith.assoc_type.c82) = assoc_entity element0, %At.decl [symbolic = %assoc0.loc6_52.2 (constants.%assoc0.d63)]
  202. // CHECK:STDOUT:
  203. // CHECK:STDOUT: !members:
  204. // CHECK:STDOUT: .Self = %Self.1
  205. // CHECK:STDOUT: .At = %assoc0.loc6_52.1
  206. // CHECK:STDOUT: witness = (%At.decl)
  207. // CHECK:STDOUT: }
  208. // CHECK:STDOUT: }
  209. // CHECK:STDOUT:
  210. // CHECK:STDOUT: impl @impl: %.loc9_7.2 as %IndexWith.type {
  211. // CHECK:STDOUT: %At.decl: %At.type.8fc = fn_decl @At.2 [template = constants.%At.8ba] {
  212. // CHECK:STDOUT: %self.patt: %empty_tuple.type = binding_pattern self
  213. // CHECK:STDOUT: %self.param_patt: %empty_tuple.type = value_param_pattern %self.patt, runtime_param0
  214. // CHECK:STDOUT: %subscript.patt: %empty_tuple.type = binding_pattern subscript
  215. // CHECK:STDOUT: %subscript.param_patt: %empty_tuple.type = value_param_pattern %subscript.patt, runtime_param1
  216. // CHECK:STDOUT: %return.patt: %empty_tuple.type = return_slot_pattern
  217. // CHECK:STDOUT: %return.param_patt: %empty_tuple.type = out_param_pattern %return.patt, runtime_param2
  218. // CHECK:STDOUT: } {
  219. // CHECK:STDOUT: %.loc10_40.1: %empty_tuple.type = tuple_literal ()
  220. // CHECK:STDOUT: %.loc10_40.2: type = converted %.loc10_40.1, constants.%empty_tuple.type [template = constants.%empty_tuple.type]
  221. // CHECK:STDOUT: %self.param: %empty_tuple.type = value_param runtime_param0
  222. // CHECK:STDOUT: %Self.ref: type = name_ref Self, @impl.%.loc9_7.2 [template = constants.%empty_tuple.type]
  223. // CHECK:STDOUT: %self: %empty_tuple.type = bind_name self, %self.param
  224. // CHECK:STDOUT: %subscript.param: %empty_tuple.type = value_param runtime_param1
  225. // CHECK:STDOUT: %.loc10_33.1: type = splice_block %.loc10_33.3 [template = constants.%empty_tuple.type] {
  226. // CHECK:STDOUT: %.loc10_33.2: %empty_tuple.type = tuple_literal ()
  227. // CHECK:STDOUT: %.loc10_33.3: type = converted %.loc10_33.2, constants.%empty_tuple.type [template = constants.%empty_tuple.type]
  228. // CHECK:STDOUT: }
  229. // CHECK:STDOUT: %subscript: %empty_tuple.type = bind_name subscript, %subscript.param
  230. // CHECK:STDOUT: %return.param: ref %empty_tuple.type = out_param runtime_param2
  231. // CHECK:STDOUT: %return: ref %empty_tuple.type = return_slot %return.param
  232. // CHECK:STDOUT: }
  233. // CHECK:STDOUT:
  234. // CHECK:STDOUT: !members:
  235. // CHECK:STDOUT: .At = %At.decl
  236. // CHECK:STDOUT: witness = file.%impl_witness
  237. // CHECK:STDOUT: }
  238. // CHECK:STDOUT:
  239. // CHECK:STDOUT: generic fn @At.1(@IndexWith.%SubscriptType.loc5_26.1: type, @IndexWith.%Self.1: @IndexWith.%IndexWith.type (%IndexWith.type.518)) {
  240. // CHECK:STDOUT: %SubscriptType: type = bind_symbolic_name SubscriptType, 0 [symbolic = %SubscriptType (constants.%SubscriptType)]
  241. // CHECK:STDOUT: %IndexWith.type: type = facet_type <@IndexWith, @IndexWith(%SubscriptType)> [symbolic = %IndexWith.type (constants.%IndexWith.type.518)]
  242. // CHECK:STDOUT: %Self: %IndexWith.type.518 = bind_symbolic_name Self, 1 [symbolic = %Self (constants.%Self)]
  243. // CHECK:STDOUT: %Self.as_type.loc6_15.1: type = facet_access_type %Self [symbolic = %Self.as_type.loc6_15.1 (constants.%Self.as_type)]
  244. // CHECK:STDOUT:
  245. // CHECK:STDOUT: fn[%self.param_patt: @At.1.%Self.as_type.loc6_15.1 (%Self.as_type)](%subscript.param_patt: @At.1.%SubscriptType (%SubscriptType)) -> %empty_tuple.type;
  246. // CHECK:STDOUT: }
  247. // CHECK:STDOUT:
  248. // CHECK:STDOUT: fn @At.2[%self.param_patt: %empty_tuple.type](%subscript.param_patt: %empty_tuple.type) -> %empty_tuple.type {
  249. // CHECK:STDOUT: !entry:
  250. // CHECK:STDOUT: %.loc11_13: %empty_tuple.type = tuple_literal ()
  251. // CHECK:STDOUT: %empty_tuple: %empty_tuple.type = tuple_value () [template = constants.%empty_tuple]
  252. // CHECK:STDOUT: %.loc11_14: %empty_tuple.type = converted %.loc11_13, %empty_tuple [template = constants.%empty_tuple]
  253. // CHECK:STDOUT: return %.loc11_14
  254. // CHECK:STDOUT: }
  255. // CHECK:STDOUT:
  256. // CHECK:STDOUT: fn @F() {
  257. // CHECK:STDOUT: !entry:
  258. // CHECK:STDOUT: %.loc15_11.1: %empty_tuple.type = tuple_literal ()
  259. // CHECK:STDOUT: %.loc15_14: %empty_tuple.type = tuple_literal ()
  260. // CHECK:STDOUT: %empty_tuple.loc15_11: %empty_tuple.type = tuple_value () [template = constants.%empty_tuple]
  261. // CHECK:STDOUT: %.loc15_11.2: %empty_tuple.type = converted %.loc15_11.1, %empty_tuple.loc15_11 [template = constants.%empty_tuple]
  262. // CHECK:STDOUT: %empty_tuple.loc15_14: %empty_tuple.type = tuple_value () [template = constants.%empty_tuple]
  263. // CHECK:STDOUT: %.loc15_15: %empty_tuple.type = converted %.loc15_14, %empty_tuple.loc15_14 [template = constants.%empty_tuple]
  264. // CHECK:STDOUT: %impl.elem0: %.b91 = impl_witness_access constants.%impl_witness, element0 [template = constants.%At.8ba]
  265. // CHECK:STDOUT: %bound_method: <bound method> = bound_method %.loc15_11.2, %impl.elem0 [template = constants.%At.bound]
  266. // CHECK:STDOUT: %At.call: init %empty_tuple.type = call %bound_method(%.loc15_11.2, %.loc15_15)
  267. // CHECK:STDOUT: return
  268. // CHECK:STDOUT: }
  269. // CHECK:STDOUT:
  270. // CHECK:STDOUT: specific @IndexWith(constants.%SubscriptType) {
  271. // CHECK:STDOUT: %SubscriptType.loc5_26.2 => constants.%SubscriptType
  272. // CHECK:STDOUT: %SubscriptType.patt.loc5_26.2 => constants.%SubscriptType
  273. // CHECK:STDOUT: }
  274. // CHECK:STDOUT:
  275. // CHECK:STDOUT: specific @At.1(constants.%SubscriptType, constants.%Self) {
  276. // CHECK:STDOUT: %SubscriptType => constants.%SubscriptType
  277. // CHECK:STDOUT: %IndexWith.type => constants.%IndexWith.type.518
  278. // CHECK:STDOUT: %Self => constants.%Self
  279. // CHECK:STDOUT: %Self.as_type.loc6_15.1 => constants.%Self.as_type
  280. // CHECK:STDOUT: }
  281. // CHECK:STDOUT:
  282. // CHECK:STDOUT: specific @IndexWith(@At.1.%SubscriptType) {}
  283. // CHECK:STDOUT:
  284. // CHECK:STDOUT: specific @IndexWith(%SubscriptType.loc5_26.2) {}
  285. // CHECK:STDOUT:
  286. // CHECK:STDOUT: specific @IndexWith(constants.%empty_tuple.type) {
  287. // CHECK:STDOUT: %SubscriptType.loc5_26.2 => constants.%empty_tuple.type
  288. // CHECK:STDOUT: %SubscriptType.patt.loc5_26.2 => constants.%empty_tuple.type
  289. // CHECK:STDOUT:
  290. // CHECK:STDOUT: !definition:
  291. // CHECK:STDOUT: %IndexWith.type => constants.%IndexWith.type.4ab
  292. // CHECK:STDOUT: %Self.2 => constants.%Self
  293. // CHECK:STDOUT: %At.type => constants.%At.type.082
  294. // CHECK:STDOUT: %At => constants.%At.d80
  295. // CHECK:STDOUT: %IndexWith.assoc_type => constants.%IndexWith.assoc_type.81e
  296. // CHECK:STDOUT: %assoc0.loc6_52.2 => constants.%assoc0.5bc
  297. // CHECK:STDOUT: }
  298. // CHECK:STDOUT:
  299. // CHECK:STDOUT: specific @At.1(constants.%empty_tuple.type, constants.%IndexWith.facet) {
  300. // CHECK:STDOUT: %SubscriptType => constants.%empty_tuple.type
  301. // CHECK:STDOUT: %IndexWith.type => constants.%IndexWith.type.4ab
  302. // CHECK:STDOUT: %Self => constants.%IndexWith.facet
  303. // CHECK:STDOUT: %Self.as_type.loc6_15.1 => constants.%empty_tuple.type
  304. // CHECK:STDOUT: }
  305. // CHECK:STDOUT: