| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 |
- // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
- // Exceptions. See /LICENSE for license information.
- // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
- //
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/impl/no_prelude/import_use_generic.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/impl/no_prelude/import_use_generic.carbon
- // --- import_generic.carbon
- library "[[@TEST_NAME]]";
- class C(T:! type) {}
- interface I {
- fn F();
- }
- impl forall [T:! type] C(T) as I {
- fn F() {}
- }
- // --- fail_use_in_fn_decl.carbon
- library "[[@TEST_NAME]]";
- import library "import_generic";
- var c: C({}) = {};
- // We're just checking that this doesn't crash. It's not expected to compile.
- // CHECK:STDERR: fail_use_in_fn_decl.carbon:[[@LINE+7]]:11: error: `Core.ImplicitAs` implicitly referenced here, but package `Core` not found [CoreNotFound]
- // CHECK:STDERR: fn F() -> c.(I.F)() {}
- // CHECK:STDERR: ^~~~~~~~~
- // CHECK:STDERR:
- // CHECK:STDERR: fail_use_in_fn_decl.carbon:[[@LINE+3]]:22: error: missing `return` at end of function with declared return type [MissingReturnStatement]
- // CHECK:STDERR: fn F() -> c.(I.F)() {}
- // CHECK:STDERR: ^
- fn F() -> c.(I.F)() {}
- // CHECK:STDOUT: --- import_generic.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic]
- // CHECK:STDOUT: %T.patt: type = symbolic_binding_pattern T, 0 [symbolic]
- // CHECK:STDOUT: %C.type: type = generic_class_type @C [template]
- // CHECK:STDOUT: %C.generic: %C.type = struct_value () [template]
- // CHECK:STDOUT: %C: type = class_type @C, @C(%T) [symbolic]
- // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [template]
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [template]
- // CHECK:STDOUT: %I.type: type = facet_type <@I> [template]
- // CHECK:STDOUT: %Self: %I.type = bind_symbolic_name Self, 0 [symbolic]
- // CHECK:STDOUT: %F.type.9df: type = fn_type @F.1 [template]
- // CHECK:STDOUT: %F.478: %F.type.9df = struct_value () [template]
- // CHECK:STDOUT: %F.assoc_type: type = assoc_entity_type %I.type, %F.type.9df [template]
- // CHECK:STDOUT: %assoc0: %F.assoc_type = assoc_entity element0, @I.%F.decl [template]
- // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (@impl.%F.decl), @impl(%T) [symbolic]
- // CHECK:STDOUT: %F.type.7bd: type = fn_type @F.2, @impl(%T) [symbolic]
- // CHECK:STDOUT: %F.3d2: %F.type.7bd = struct_value () [symbolic]
- // CHECK:STDOUT: %I.facet: %I.type = facet_value %C, %impl_witness [symbolic]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .C = %C.decl
- // CHECK:STDOUT: .I = %I.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %C.decl: %C.type = class_decl @C [template = constants.%C.generic] {
- // CHECK:STDOUT: %T.patt.loc4_9.1: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc4_9.2 (constants.%T.patt)]
- // CHECK:STDOUT: %T.param_patt: type = value_param_pattern %T.patt.loc4_9.1, runtime_param<invalid> [symbolic = %T.patt.loc4_9.2 (constants.%T.patt)]
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %T.param: type = value_param runtime_param<invalid>
- // CHECK:STDOUT: %T.loc4_9.1: type = bind_symbolic_name T, 0, %T.param [symbolic = %T.loc4_9.2 (constants.%T)]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %I.decl: type = interface_decl @I [template = constants.%I.type] {} {}
- // CHECK:STDOUT: impl_decl @impl [template] {
- // CHECK:STDOUT: %T.patt.loc10_14.1: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc10_14.2 (constants.%T.patt)]
- // CHECK:STDOUT: %T.param_patt: type = value_param_pattern %T.patt.loc10_14.1, runtime_param<invalid> [symbolic = %T.patt.loc10_14.2 (constants.%T.patt)]
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %C.ref: %C.type = name_ref C, file.%C.decl [template = constants.%C.generic]
- // CHECK:STDOUT: %T.ref: type = name_ref T, %T.loc10_14.1 [symbolic = %T.loc10_14.2 (constants.%T)]
- // CHECK:STDOUT: %C.loc10_27.1: type = class_type @C, @C(constants.%T) [symbolic = %C.loc10_27.2 (constants.%C)]
- // CHECK:STDOUT: %I.ref: type = name_ref I, file.%I.decl [template = constants.%I.type]
- // CHECK:STDOUT: %T.param: type = value_param runtime_param<invalid>
- // CHECK:STDOUT: %T.loc10_14.1: type = bind_symbolic_name T, 0, %T.param [symbolic = %T.loc10_14.2 (constants.%T)]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (@impl.%F.decl), @impl(constants.%T) [symbolic = @impl.%impl_witness (constants.%impl_witness)]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: interface @I {
- // CHECK:STDOUT: %Self: %I.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
- // CHECK:STDOUT: %F.decl: %F.type.9df = fn_decl @F.1 [template = constants.%F.478] {} {}
- // CHECK:STDOUT: %assoc0: %F.assoc_type = assoc_entity element0, %F.decl [template = constants.%assoc0]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = %Self
- // CHECK:STDOUT: .F = %assoc0
- // CHECK:STDOUT: witness = (%F.decl)
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic impl @impl(%T.loc10_14.1: type) {
- // CHECK:STDOUT: %T.loc10_14.2: type = bind_symbolic_name T, 0 [symbolic = %T.loc10_14.2 (constants.%T)]
- // CHECK:STDOUT: %T.patt.loc10_14.2: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc10_14.2 (constants.%T.patt)]
- // CHECK:STDOUT: %C.loc10_27.2: type = class_type @C, @C(%T.loc10_14.2) [symbolic = %C.loc10_27.2 (constants.%C)]
- // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (%F.decl), @impl(%T.loc10_14.2) [symbolic = %impl_witness (constants.%impl_witness)]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %F.type: type = fn_type @F.2, @impl(%T.loc10_14.2) [symbolic = %F.type (constants.%F.type.7bd)]
- // CHECK:STDOUT: %F: @impl.%F.type (%F.type.7bd) = struct_value () [symbolic = %F (constants.%F.3d2)]
- // CHECK:STDOUT:
- // CHECK:STDOUT: impl: %C.loc10_27.1 as %I.ref {
- // CHECK:STDOUT: %F.decl: @impl.%F.type (%F.type.7bd) = fn_decl @F.2 [symbolic = @impl.%F (constants.%F.3d2)] {} {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: witness = file.%impl_witness
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic class @C(%T.loc4_9.1: type) {
- // CHECK:STDOUT: %T.loc4_9.2: type = bind_symbolic_name T, 0 [symbolic = %T.loc4_9.2 (constants.%T)]
- // CHECK:STDOUT: %T.patt.loc4_9.2: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt.loc4_9.2 (constants.%T.patt)]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT:
- // CHECK:STDOUT: class {
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [template = constants.%complete_type]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%C
- // CHECK:STDOUT: complete_type_witness = %complete_type
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic fn @F.1(@I.%Self: %I.type) {
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn();
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic fn @F.2(@impl.%T.loc10_14.1: type) {
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @C(constants.%T) {
- // CHECK:STDOUT: %T.loc4_9.2 => constants.%T
- // CHECK:STDOUT: %T.patt.loc4_9.2 => constants.%T
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @F.1(constants.%Self) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @impl(constants.%T) {
- // CHECK:STDOUT: %T.loc10_14.2 => constants.%T
- // CHECK:STDOUT: %T.patt.loc10_14.2 => constants.%T
- // CHECK:STDOUT: %C.loc10_27.2 => constants.%C
- // CHECK:STDOUT: %impl_witness => constants.%impl_witness
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %F.type => constants.%F.type.7bd
- // CHECK:STDOUT: %F => constants.%F.3d2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @C(@impl.%T.loc10_14.2) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @impl(%T.loc10_14.2) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @F.2(constants.%T) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @F.1(constants.%I.facet) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: --- fail_use_in_fn_decl.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %C.type: type = generic_class_type @C [template]
- // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [template]
- // CHECK:STDOUT: %C.generic: %C.type = struct_value () [template]
- // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [template]
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [template]
- // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic]
- // CHECK:STDOUT: %C.df4: type = class_type @C, @C(%T) [symbolic]
- // CHECK:STDOUT: %T.patt: type = symbolic_binding_pattern T, 0 [symbolic]
- // CHECK:STDOUT: %C.a68: type = class_type @C, @C(%empty_struct_type) [template]
- // CHECK:STDOUT: %C.val: %C.a68 = struct_value () [template]
- // CHECK:STDOUT: %I.type: type = facet_type <@I> [template]
- // CHECK:STDOUT: %Self: %I.type = bind_symbolic_name Self, 0 [symbolic]
- // CHECK:STDOUT: %F.type.9df: type = fn_type @F.1 [template]
- // CHECK:STDOUT: %F.assoc_type: type = assoc_entity_type %I.type, %F.type.9df [template]
- // CHECK:STDOUT: %assoc0: %F.assoc_type = assoc_entity element0, imports.%import_ref.911 [template]
- // CHECK:STDOUT: %impl_witness.1c5: <witness> = impl_witness (imports.%import_ref.a9f), @impl(%T) [symbolic]
- // CHECK:STDOUT: %F.type.2f0: type = fn_type @F.2, @impl(%T) [symbolic]
- // CHECK:STDOUT: %F.263: %F.type.2f0 = struct_value () [symbolic]
- // CHECK:STDOUT: %impl_witness.8a8: <witness> = impl_witness (imports.%import_ref.a9f), @impl(%empty_struct_type) [template]
- // CHECK:STDOUT: %impl_witness.4be: <witness> = impl_witness (imports.%import_ref.5d8), @impl(%T) [symbolic]
- // CHECK:STDOUT: %F.type.50d: type = fn_type @F.2, @impl(%empty_struct_type) [template]
- // CHECK:STDOUT: %F.91e: %F.type.50d = struct_value () [template]
- // CHECK:STDOUT: %F.specific_fn: <specific function> = specific_function %F.91e, @F.2(%empty_struct_type) [template]
- // CHECK:STDOUT: %F.type.b25: type = fn_type @F.3 [template]
- // CHECK:STDOUT: %F.c41: %F.type.b25 = struct_value () [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %import_ref.26e: %C.type = import_ref Main//import_generic, C, loaded [template = constants.%C.generic]
- // CHECK:STDOUT: %import_ref.9f4: type = import_ref Main//import_generic, I, loaded [template = constants.%I.type]
- // CHECK:STDOUT: %import_ref.8f2: <witness> = import_ref Main//import_generic, loc4_20, loaded [template = constants.%complete_type]
- // CHECK:STDOUT: %import_ref.495 = import_ref Main//import_generic, inst25 [no loc], unloaded
- // CHECK:STDOUT: %import_ref.f8c = import_ref Main//import_generic, inst31 [no loc], unloaded
- // CHECK:STDOUT: %import_ref.145: %F.assoc_type = import_ref Main//import_generic, loc7_9, loaded [template = constants.%assoc0]
- // CHECK:STDOUT: %import_ref.a15 = import_ref Main//import_generic, F, unloaded
- // CHECK:STDOUT: %import_ref.445: <witness> = import_ref Main//import_generic, loc10_34, loaded [symbolic = @impl.%impl_witness (constants.%impl_witness.4be)]
- // CHECK:STDOUT: %import_ref.311: type = import_ref Main//import_generic, loc10_27, loaded [symbolic = @impl.%C (constants.%C.df4)]
- // CHECK:STDOUT: %import_ref.bd0: type = import_ref Main//import_generic, loc10_32, loaded [template = constants.%I.type]
- // CHECK:STDOUT: %import_ref.a9f: @impl.%F.type (%F.type.2f0) = import_ref Main//import_generic, loc11_10, loaded [symbolic = @impl.%F (constants.%F.263)]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .C = imports.%import_ref.26e
- // CHECK:STDOUT: .I = imports.%import_ref.9f4
- // CHECK:STDOUT: .c = %c
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %default.import = import <invalid>
- // CHECK:STDOUT: %c.var: ref %C.a68 = var c
- // CHECK:STDOUT: %c: ref %C.a68 = bind_name c, %c.var
- // CHECK:STDOUT: %F.decl: %F.type.b25 = fn_decl @F.3 [template = constants.%F.c41] {
- // CHECK:STDOUT: %return.patt: <error> = return_slot_pattern
- // CHECK:STDOUT: %return.param_patt: <error> = out_param_pattern %return.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %c.ref: ref %C.a68 = name_ref c, file.%c
- // CHECK:STDOUT: %I.ref: type = name_ref I, imports.%import_ref.9f4 [template = constants.%I.type]
- // CHECK:STDOUT: %F.ref: %F.assoc_type = name_ref F, imports.%import_ref.145 [template = constants.%assoc0]
- // CHECK:STDOUT: %impl.elem0: %F.type.9df = impl_witness_access constants.%impl_witness.8a8, element0 [template = constants.%F.91e]
- // CHECK:STDOUT: %F.specific_fn: <specific function> = specific_function %impl.elem0, @F.2(constants.%empty_struct_type) [template = constants.%F.specific_fn]
- // CHECK:STDOUT: %F.call: init %empty_tuple.type = call %F.specific_fn()
- // CHECK:STDOUT: %.loc15_19.1: ref %empty_tuple.type = temporary_storage
- // CHECK:STDOUT: %.loc15_19.2: ref %empty_tuple.type = temporary %.loc15_19.1, %F.call
- // CHECK:STDOUT: %.loc15_19.3: type = converted %F.call, <error> [template = <error>]
- // CHECK:STDOUT: %return.param: ref <error> = out_param runtime_param0
- // CHECK:STDOUT: %return: ref <error> = return_slot %return.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: interface @I [from "import_generic.carbon"] {
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = imports.%import_ref.f8c
- // CHECK:STDOUT: .F = imports.%import_ref.145
- // CHECK:STDOUT: witness = (imports.%import_ref.a15)
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic impl @impl(constants.%T: type) [from "import_generic.carbon"] {
- // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic = %T (constants.%T)]
- // CHECK:STDOUT: %T.patt: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt (constants.%T.patt)]
- // CHECK:STDOUT: %C: type = class_type @C, @C(%T) [symbolic = %C (constants.%C.df4)]
- // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (imports.%import_ref.a9f), @impl(%T) [symbolic = %impl_witness (constants.%impl_witness.1c5)]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %F.type: type = fn_type @F.2, @impl(%T) [symbolic = %F.type (constants.%F.type.2f0)]
- // CHECK:STDOUT: %F: @impl.%F.type (%F.type.2f0) = struct_value () [symbolic = %F (constants.%F.263)]
- // CHECK:STDOUT:
- // CHECK:STDOUT: impl: imports.%import_ref.311 as imports.%import_ref.bd0 {
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: witness = imports.%import_ref.445
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic class @C(constants.%T: type) [from "import_generic.carbon"] {
- // CHECK:STDOUT: %T: type = bind_symbolic_name T, 0 [symbolic = %T (constants.%T)]
- // CHECK:STDOUT: %T.patt: type = symbolic_binding_pattern T, 0 [symbolic = %T.patt (constants.%T.patt)]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT:
- // CHECK:STDOUT: class {
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = imports.%import_ref.495
- // CHECK:STDOUT: complete_type_witness = imports.%import_ref.8f2
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic fn @F.1(constants.%Self: %I.type) [from "import_generic.carbon"] {
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn();
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic fn @F.2(constants.%T: type) [from "import_generic.carbon"] {
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn();
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F.3() -> <error> {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @__global_init() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %.loc6_17.1: %empty_struct_type = struct_literal ()
- // CHECK:STDOUT: %.loc6_17.2: init %C.a68 = class_init (), file.%c.var [template = constants.%C.val]
- // CHECK:STDOUT: %.loc6_18: init %C.a68 = converted %.loc6_17.1, %.loc6_17.2 [template = constants.%C.val]
- // CHECK:STDOUT: assign file.%c.var, %.loc6_18
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @C(constants.%T) {
- // CHECK:STDOUT: %T => constants.%T
- // CHECK:STDOUT: %T.patt => constants.%T
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @C(constants.%empty_struct_type) {
- // CHECK:STDOUT: %T => constants.%empty_struct_type
- // CHECK:STDOUT: %T.patt => constants.%empty_struct_type
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @F.1(constants.%Self) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @impl(constants.%T) {
- // CHECK:STDOUT: %T => constants.%T
- // CHECK:STDOUT: %T.patt => constants.%T
- // CHECK:STDOUT: %C => constants.%C.df4
- // CHECK:STDOUT: %impl_witness => constants.%impl_witness.1c5
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %F.type => constants.%F.type.2f0
- // CHECK:STDOUT: %F => constants.%F.263
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @C(@impl.%T) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @impl(%T) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @F.2(constants.%T) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @impl(constants.%empty_struct_type) {
- // CHECK:STDOUT: %T => constants.%empty_struct_type
- // CHECK:STDOUT: %T.patt => constants.%empty_struct_type
- // CHECK:STDOUT: %C => constants.%C.a68
- // CHECK:STDOUT: %impl_witness => constants.%impl_witness.8a8
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %F.type => constants.%F.type.50d
- // CHECK:STDOUT: %F => constants.%F.91e
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @F.2(constants.%empty_struct_type) {
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|