| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347 |
- // 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
- //
- // INCLUDE-FILE: toolchain/testing/testdata/min_prelude/none.carbon
- //
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/facet/require_import.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/facet/require_import.carbon
- // --- a.carbon
- library "[[@TEST_NAME]]";
- interface Z(T:! type) {
- fn F();
- }
- interface Y {
- extend require impls Z(Self);
- }
- constraint X {
- extend require impls Z(Self);
- }
- // --- a.impl.carbon
- //@include-in-dumps
- impl library "[[@TEST_NAME]]";
- fn F(A:! X, unused B:! Y) {
- A.F();
- }
- // --- fail_todo_symbolic_facet_interface_requires_interface.carbon
- library "[[@TEST_NAME]]";
- import library "a";
- fn F(B:! Y) {
- // TODO: We find the name F, but then fail to do impl lookup for `F` in `B:!
- // Y` since the identified facet type doesn't include Z. We need to be able to
- // find a symbolic facet from the require decl in Y during impl lookup.
- //
- // CHECK:STDERR: fail_todo_symbolic_facet_interface_requires_interface.carbon:[[@LINE+4]]:3: error: cannot access member of interface `Z(B)` in type `B` that does not implement that interface [MissingImplInMemberAccess]
- // CHECK:STDERR: B.F();
- // CHECK:STDERR: ^~~
- // CHECK:STDERR:
- B.F();
- }
- // CHECK:STDOUT: --- a.impl.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %type: type = facet_type <type> [concrete]
- // CHECK:STDOUT: %.Self: %type = symbolic_binding .Self [symbolic_self]
- // CHECK:STDOUT: %X.type: type = facet_type <@X> [concrete]
- // CHECK:STDOUT: %Self.f45: %X.type = symbolic_binding Self, 0 [symbolic]
- // CHECK:STDOUT: %Self.as_type.190: type = facet_access_type %Self.f45 [symbolic]
- // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [concrete]
- // CHECK:STDOUT: %T: type = symbolic_binding T, 0 [symbolic]
- // CHECK:STDOUT: %Z.type.0ed: type = facet_type <@Z, @Z(%T)> [symbolic]
- // CHECK:STDOUT: %Self.984: %Z.type.0ed = symbolic_binding Self, 1 [symbolic]
- // CHECK:STDOUT: %Z.assoc_type.0bf: type = assoc_entity_type @Z, @Z(%T) [symbolic]
- // CHECK:STDOUT: %Z.WithSelf.F.type.091: type = fn_type @Z.WithSelf.F, @Z.WithSelf(%T, %Self.984) [symbolic]
- // CHECK:STDOUT: %Z.WithSelf.F.073: %Z.WithSelf.F.type.091 = struct_value () [symbolic]
- // CHECK:STDOUT: %Z.type.67cf45.1: type = facet_type <@Z, @Z(%Self.as_type.190)> [symbolic]
- // CHECK:STDOUT: %Self.9e6a89.1: %Z.type.67cf45.1 = symbolic_binding Self, 1 [symbolic]
- // CHECK:STDOUT: %require_complete.5aca91.1: <witness> = require_complete_type %Z.type.67cf45.1 [symbolic]
- // CHECK:STDOUT: %pattern_type.9a5: type = pattern_type %X.type [concrete]
- // CHECK:STDOUT: %A: %X.type = symbolic_binding A, 0 [symbolic]
- // CHECK:STDOUT: %Y.type: type = facet_type <@Y> [concrete]
- // CHECK:STDOUT: %Self.d4d: %Y.type = symbolic_binding Self, 0 [symbolic]
- // CHECK:STDOUT: %Self.as_type.c59: type = facet_access_type %Self.d4d [symbolic]
- // CHECK:STDOUT: %Z.type.4c1: type = facet_type <@Z, @Z(%Self.as_type.c59)> [symbolic]
- // CHECK:STDOUT: %Self.334: %Z.type.4c1 = symbolic_binding Self, 1 [symbolic]
- // CHECK:STDOUT: %pattern_type.95b: type = pattern_type %Y.type [concrete]
- // CHECK:STDOUT: %B: %Y.type = symbolic_binding B, 1 [symbolic]
- // CHECK:STDOUT: %F.type: type = fn_type @F [concrete]
- // CHECK:STDOUT: %F: %F.type = struct_value () [concrete]
- // CHECK:STDOUT: %A.as_type: type = facet_access_type %A [symbolic]
- // CHECK:STDOUT: %Z.type.67cf45.2: type = facet_type <@Z, @Z(%A.as_type)> [symbolic]
- // CHECK:STDOUT: %require_complete.5aca91.2: <witness> = require_complete_type %Z.type.67cf45.2 [symbolic]
- // CHECK:STDOUT: %Self.9e6a89.2: %Z.type.67cf45.2 = symbolic_binding Self, 1 [symbolic]
- // CHECK:STDOUT: %Z.WithSelf.F.type.c44: type = fn_type @Z.WithSelf.F, @Z.WithSelf(%A.as_type, %Self.984) [symbolic]
- // CHECK:STDOUT: %Z.WithSelf.F.e33: %Z.WithSelf.F.type.c44 = struct_value () [symbolic]
- // CHECK:STDOUT: %Z.assoc_type.221: type = assoc_entity_type @Z, @Z(%A.as_type) [symbolic]
- // CHECK:STDOUT: %assoc0.b43: %Z.assoc_type.221 = assoc_entity element0, imports.%Main.import_ref.7b4 [symbolic]
- // CHECK:STDOUT: %Z.WithSelf.F.type.f05: type = fn_type @Z.WithSelf.F, @Z.WithSelf(%A.as_type, %A) [symbolic]
- // CHECK:STDOUT: %Z.WithSelf.F.364: %Z.WithSelf.F.type.f05 = struct_value () [symbolic]
- // CHECK:STDOUT: %assoc0.20d: %Z.assoc_type.0bf = assoc_entity element0, imports.%Main.import_ref.47b [symbolic]
- // CHECK:STDOUT: %Z.lookup_impl_witness: <witness> = lookup_impl_witness %A, @Z, @Z(%A.as_type) [symbolic]
- // CHECK:STDOUT: %Z.facet: %Z.type.67cf45.2 = facet_value %A.as_type, (%Z.lookup_impl_witness) [symbolic]
- // CHECK:STDOUT: %Z.WithSelf.F.type.0d8: type = fn_type @Z.WithSelf.F, @Z.WithSelf(%A.as_type, %Z.facet) [symbolic]
- // CHECK:STDOUT: %Z.WithSelf.F.3cc: %Z.WithSelf.F.type.0d8 = struct_value () [symbolic]
- // CHECK:STDOUT: %.cfd: type = fn_type_with_self_type %Z.WithSelf.F.type.0d8, %Z.facet [symbolic]
- // CHECK:STDOUT: %impl.elem0: %.cfd = impl_witness_access %Z.lookup_impl_witness, element0 [symbolic]
- // CHECK:STDOUT: %specific_impl_fn: <specific function> = specific_impl_function %impl.elem0, @Z.WithSelf.F(%A.as_type, %Z.facet) [symbolic]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %Main.Z = import_ref Main//a, Z, unloaded
- // CHECK:STDOUT: %Main.Y: type = import_ref Main//a, Y, loaded [concrete = constants.%Y.type]
- // CHECK:STDOUT: %Main.X: type = import_ref Main//a, X, loaded [concrete = constants.%X.type]
- // CHECK:STDOUT: %Main.import_ref.4a8: type = import_ref Main//a, loc12_31, loaded [symbolic = @X.WithSelf.%Z.type (constants.%Z.type.67cf45.1)]
- // CHECK:STDOUT: %Main.import_ref.f56: @Z.WithSelf.%Z.assoc_type (%Z.assoc_type.0bf) = import_ref Main//a, loc4_9, loaded [symbolic = @Z.WithSelf.%assoc0 (constants.%assoc0.20d)]
- // CHECK:STDOUT: %Main.F = import_ref Main//a, F, unloaded
- // CHECK:STDOUT: %Main.import_ref.7b4: @Z.WithSelf.%Z.WithSelf.F.type (%Z.WithSelf.F.type.091) = import_ref Main//a, loc4_9, loaded [symbolic = @Z.WithSelf.%Z.WithSelf.F (constants.%Z.WithSelf.F.073)]
- // CHECK:STDOUT: %Main.import_ref.b3bc94.2: type = import_ref Main//a, loc3_14, loaded [symbolic = @Z.%T (constants.%T)]
- // CHECK:STDOUT: %Main.import_ref.1dc578.2: @Z.%Z.type (%Z.type.0ed) = import_ref Main//a, loc3_23, loaded [symbolic = @Z.%Self (constants.%Self.984)]
- // CHECK:STDOUT: %Main.import_ref.145 = import_ref Main//a, loc3_23, unloaded
- // CHECK:STDOUT: %Main.import_ref.b3bc94.3: type = import_ref Main//a, loc3_14, loaded [symbolic = @Z.%T (constants.%T)]
- // CHECK:STDOUT: %Main.import_ref.67f: type = import_ref Main//a, loc12_18, loaded [symbolic = @X.WithSelf.Self.as_type.impls.Z.type.require.%Self.as_type (constants.%Self.as_type.190)]
- // CHECK:STDOUT: %Main.import_ref.12d: type = import_ref Main//a, loc12_30, loaded [symbolic = @X.WithSelf.Self.as_type.impls.Z.type.require.%Z.type (constants.%Z.type.67cf45.1)]
- // CHECK:STDOUT: %Main.import_ref.e33cd1.2: %X.type = import_ref Main//a, loc11_14, loaded [symbolic = constants.%Self.f45]
- // CHECK:STDOUT: %Main.import_ref.65b = import_ref Main//a, loc11_14, unloaded
- // CHECK:STDOUT: %Main.import_ref.030 = import_ref Main//a, loc8_31, unloaded
- // CHECK:STDOUT: %Main.import_ref.7bb: type = import_ref Main//a, loc8_18, loaded [symbolic = @Y.WithSelf.Self.as_type.impls.Z.type.require.%Self.as_type (constants.%Self.as_type.c59)]
- // CHECK:STDOUT: %Main.import_ref.e14: type = import_ref Main//a, loc8_30, loaded [symbolic = @Y.WithSelf.Self.as_type.impls.Z.type.require.%Z.type (constants.%Z.type.4c1)]
- // CHECK:STDOUT: %Main.import_ref.8c73c0.2: %Y.type = import_ref Main//a, loc7_13, loaded [symbolic = constants.%Self.d4d]
- // CHECK:STDOUT: %Main.import_ref.3e2 = import_ref Main//a, loc7_13, unloaded
- // CHECK:STDOUT: %Main.import_ref.47b = import_ref Main//a, loc4_9, unloaded
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [concrete] {
- // CHECK:STDOUT: .Z = imports.%Main.Z
- // CHECK:STDOUT: .Y = imports.%Main.Y
- // CHECK:STDOUT: .X = imports.%Main.X
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %default.import.loc2_17.1 = import <none>
- // CHECK:STDOUT: %default.import.loc2_17.2 = import <none>
- // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [concrete = constants.%F] {
- // CHECK:STDOUT: %A.patt: %pattern_type.9a5 = symbolic_binding_pattern A, 0 [concrete]
- // CHECK:STDOUT: %B.patt: %pattern_type.95b = symbolic_binding_pattern B, 1 [concrete]
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %.loc4_10: type = splice_block %X.ref [concrete = constants.%X.type] {
- // CHECK:STDOUT: %.Self.2: %type = symbolic_binding .Self [symbolic_self = constants.%.Self]
- // CHECK:STDOUT: %X.ref: type = name_ref X, imports.%Main.X [concrete = constants.%X.type]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %A.loc4_7.2: %X.type = symbolic_binding A, 0 [symbolic = %A.loc4_7.1 (constants.%A)]
- // CHECK:STDOUT: %.loc4_24: type = splice_block %Y.ref [concrete = constants.%Y.type] {
- // CHECK:STDOUT: %.Self.1: %type = symbolic_binding .Self [symbolic_self = constants.%.Self]
- // CHECK:STDOUT: %Y.ref: type = name_ref Y, imports.%Main.Y [concrete = constants.%Y.type]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %B.loc4_21.2: %Y.type = symbolic_binding B, 1 [symbolic = %B.loc4_21.1 (constants.%B)]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic interface @Z(imports.%Main.import_ref.b3bc94.3: type) [from "a.carbon"] {
- // CHECK:STDOUT: %T: type = symbolic_binding T, 0 [symbolic = %T (constants.%T)]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %Z.type: type = facet_type <@Z, @Z(%T)> [symbolic = %Z.type (constants.%Z.type.0ed)]
- // CHECK:STDOUT: %Self: @Z.%Z.type (%Z.type.0ed) = symbolic_binding Self, 1 [symbolic = %Self (constants.%Self.984)]
- // CHECK:STDOUT:
- // CHECK:STDOUT: interface {
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = imports.%Main.import_ref.145
- // CHECK:STDOUT: .F = imports.%Main.import_ref.f56
- // CHECK:STDOUT: witness = (imports.%Main.F)
- // CHECK:STDOUT:
- // CHECK:STDOUT: !requires:
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: interface @Y [from "a.carbon"] {
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = imports.%Main.import_ref.3e2
- // CHECK:STDOUT: extend imports.%Main.import_ref.030
- // CHECK:STDOUT: witness = ()
- // CHECK:STDOUT:
- // CHECK:STDOUT: !requires:
- // CHECK:STDOUT: @Y.WithSelf.Self.as_type.impls.Z.type.require {
- // CHECK:STDOUT: require imports.%Main.import_ref.7bb impls imports.%Main.import_ref.e14
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: constraint @X [from "a.carbon"] {
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = imports.%Main.import_ref.65b
- // CHECK:STDOUT: .F = <poisoned>
- // CHECK:STDOUT: extend imports.%Main.import_ref.4a8
- // CHECK:STDOUT:
- // CHECK:STDOUT: !requires:
- // CHECK:STDOUT: @X.WithSelf.Self.as_type.impls.Z.type.require {
- // CHECK:STDOUT: require imports.%Main.import_ref.67f impls imports.%Main.import_ref.12d
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic require @X.WithSelf.Self.as_type.impls.Z.type.require(imports.%Main.import_ref.e33cd1.2: %X.type) [from "a.carbon"] {
- // CHECK:STDOUT: %Self: %X.type = symbolic_binding Self, 0 [symbolic = %Self (constants.%Self.f45)]
- // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self [symbolic = %Self.as_type (constants.%Self.as_type.190)]
- // CHECK:STDOUT: %Z.type: type = facet_type <@Z, @Z(%Self.as_type)> [symbolic = %Z.type (constants.%Z.type.67cf45.1)]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic require @Y.WithSelf.Self.as_type.impls.Z.type.require(imports.%Main.import_ref.8c73c0.2: %Y.type) [from "a.carbon"] {
- // CHECK:STDOUT: %Self: %Y.type = symbolic_binding Self, 0 [symbolic = %Self (constants.%Self.d4d)]
- // CHECK:STDOUT: %Self.as_type: type = facet_access_type %Self [symbolic = %Self.as_type (constants.%Self.as_type.c59)]
- // CHECK:STDOUT: %Z.type: type = facet_type <@Z, @Z(%Self.as_type)> [symbolic = %Z.type (constants.%Z.type.4c1)]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic fn @Z.WithSelf.F(imports.%Main.import_ref.b3bc94.2: type, imports.%Main.import_ref.1dc578.2: @Z.%Z.type (%Z.type.0ed)) [from "a.carbon"] {
- // CHECK:STDOUT: fn;
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic fn @F(%A.loc4_7.2: %X.type, %B.loc4_21.2: %Y.type) {
- // CHECK:STDOUT: %A.loc4_7.1: %X.type = symbolic_binding A, 0 [symbolic = %A.loc4_7.1 (constants.%A)]
- // CHECK:STDOUT: %B.loc4_21.1: %Y.type = symbolic_binding B, 1 [symbolic = %B.loc4_21.1 (constants.%B)]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %A.as_type.loc5_4.2: type = facet_access_type %A.loc4_7.1 [symbolic = %A.as_type.loc5_4.2 (constants.%A.as_type)]
- // CHECK:STDOUT: %Z.type: type = facet_type <@Z, @Z(%A.as_type.loc5_4.2)> [symbolic = %Z.type (constants.%Z.type.67cf45.2)]
- // CHECK:STDOUT: %require_complete: <witness> = require_complete_type %Z.type [symbolic = %require_complete (constants.%require_complete.5aca91.2)]
- // CHECK:STDOUT: %Z.assoc_type: type = assoc_entity_type @Z, @Z(%A.as_type.loc5_4.2) [symbolic = %Z.assoc_type (constants.%Z.assoc_type.221)]
- // CHECK:STDOUT: %assoc0: @F.%Z.assoc_type (%Z.assoc_type.221) = assoc_entity element0, imports.%Main.import_ref.7b4 [symbolic = %assoc0 (constants.%assoc0.b43)]
- // CHECK:STDOUT: %Z.lookup_impl_witness: <witness> = lookup_impl_witness %A.loc4_7.1, @Z, @Z(%A.as_type.loc5_4.2) [symbolic = %Z.lookup_impl_witness (constants.%Z.lookup_impl_witness)]
- // CHECK:STDOUT: %Z.facet: @F.%Z.type (%Z.type.67cf45.2) = facet_value %A.as_type.loc5_4.2, (%Z.lookup_impl_witness) [symbolic = %Z.facet (constants.%Z.facet)]
- // CHECK:STDOUT: %Z.WithSelf.F.type: type = fn_type @Z.WithSelf.F, @Z.WithSelf(%A.as_type.loc5_4.2, %Z.facet) [symbolic = %Z.WithSelf.F.type (constants.%Z.WithSelf.F.type.0d8)]
- // CHECK:STDOUT: %.loc5_4.3: type = fn_type_with_self_type %Z.WithSelf.F.type, %Z.facet [symbolic = %.loc5_4.3 (constants.%.cfd)]
- // CHECK:STDOUT: %impl.elem0.loc5_4.2: @F.%.loc5_4.3 (%.cfd) = impl_witness_access %Z.lookup_impl_witness, element0 [symbolic = %impl.elem0.loc5_4.2 (constants.%impl.elem0)]
- // CHECK:STDOUT: %specific_impl_fn.loc5_4.2: <specific function> = specific_impl_function %impl.elem0.loc5_4.2, @Z.WithSelf.F(%A.as_type.loc5_4.2, %Z.facet) [symbolic = %specific_impl_fn.loc5_4.2 (constants.%specific_impl_fn)]
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %A.ref: %X.type = name_ref A, %A.loc4_7.2 [symbolic = %A.loc4_7.1 (constants.%A)]
- // CHECK:STDOUT: %A.as_type.loc5_4.1: type = facet_access_type %A.ref [symbolic = %A.as_type.loc5_4.2 (constants.%A.as_type)]
- // CHECK:STDOUT: %.loc5_4.1: type = converted %A.ref, %A.as_type.loc5_4.1 [symbolic = %A.as_type.loc5_4.2 (constants.%A.as_type)]
- // CHECK:STDOUT: %.loc5_4.2: @F.%Z.assoc_type (%Z.assoc_type.221) = specific_constant imports.%Main.import_ref.f56, @Z.WithSelf(constants.%A.as_type, constants.%A) [symbolic = %assoc0 (constants.%assoc0.b43)]
- // CHECK:STDOUT: %F.ref: @F.%Z.assoc_type (%Z.assoc_type.221) = name_ref F, %.loc5_4.2 [symbolic = %assoc0 (constants.%assoc0.b43)]
- // CHECK:STDOUT: %impl.elem0.loc5_4.1: @F.%.loc5_4.3 (%.cfd) = impl_witness_access constants.%Z.lookup_impl_witness, element0 [symbolic = %impl.elem0.loc5_4.2 (constants.%impl.elem0)]
- // CHECK:STDOUT: %specific_impl_fn.loc5_4.1: <specific function> = specific_impl_function %impl.elem0.loc5_4.1, @Z.WithSelf.F(constants.%A.as_type, constants.%Z.facet) [symbolic = %specific_impl_fn.loc5_4.2 (constants.%specific_impl_fn)]
- // CHECK:STDOUT: %Z.WithSelf.F.call: init %empty_tuple.type = call %specific_impl_fn.loc5_4.1()
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @Z(constants.%T) {
- // CHECK:STDOUT: %T => constants.%T
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @Z.WithSelf(constants.%T, constants.%Self.984) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @Z.WithSelf.F(constants.%T, constants.%Self.984) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @Z(constants.%Self.as_type.190) {
- // CHECK:STDOUT: %T => constants.%Self.as_type.190
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %Z.type => constants.%Z.type.67cf45.1
- // CHECK:STDOUT: %Self => constants.%Self.9e6a89.1
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @X.WithSelf(constants.%Self.f45) {
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %Self => constants.%Self.f45
- // CHECK:STDOUT: %Self.as_type => constants.%Self.as_type.190
- // CHECK:STDOUT: %Z.type => constants.%Z.type.67cf45.1
- // CHECK:STDOUT: %require_complete => constants.%require_complete.5aca91.1
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @X.WithSelf.Self.as_type.impls.Z.type.require(constants.%Self.f45) {
- // CHECK:STDOUT: %Self => constants.%Self.f45
- // CHECK:STDOUT: %Self.as_type => constants.%Self.as_type.190
- // CHECK:STDOUT: %Z.type => constants.%Z.type.67cf45.1
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @Z(constants.%Self.as_type.c59) {
- // CHECK:STDOUT: %T => constants.%Self.as_type.c59
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %Z.type => constants.%Z.type.4c1
- // CHECK:STDOUT: %Self => constants.%Self.334
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @Y.WithSelf(constants.%Self.d4d) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @Y.WithSelf.Self.as_type.impls.Z.type.require(constants.%Self.d4d) {
- // CHECK:STDOUT: %Self => constants.%Self.d4d
- // CHECK:STDOUT: %Self.as_type => constants.%Self.as_type.c59
- // CHECK:STDOUT: %Z.type => constants.%Z.type.4c1
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @F(constants.%A, constants.%B) {
- // CHECK:STDOUT: %A.loc4_7.1 => constants.%A
- // CHECK:STDOUT: %B.loc4_21.1 => constants.%B
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @X.WithSelf(constants.%A) {
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %Self => constants.%A
- // CHECK:STDOUT: %Self.as_type => constants.%A.as_type
- // CHECK:STDOUT: %Z.type => constants.%Z.type.67cf45.2
- // CHECK:STDOUT: %require_complete => constants.%require_complete.5aca91.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @Z(constants.%A.as_type) {
- // CHECK:STDOUT: %T => constants.%A.as_type
- // CHECK:STDOUT:
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %Z.type => constants.%Z.type.67cf45.2
- // CHECK:STDOUT: %Self => constants.%Self.9e6a89.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @Z.WithSelf(constants.%A.as_type, constants.%Self.984) {
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %T => constants.%A.as_type
- // CHECK:STDOUT: %Z.type => constants.%Z.type.67cf45.2
- // CHECK:STDOUT: %Self => constants.%Self.984
- // CHECK:STDOUT: %Z.WithSelf.F.type => constants.%Z.WithSelf.F.type.c44
- // CHECK:STDOUT: %Z.WithSelf.F => constants.%Z.WithSelf.F.e33
- // CHECK:STDOUT: %Z.assoc_type => constants.%Z.assoc_type.221
- // CHECK:STDOUT: %assoc0 => constants.%assoc0.b43
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @Z.WithSelf(constants.%A.as_type, constants.%A) {
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %T => constants.%A.as_type
- // CHECK:STDOUT: %Z.type => constants.%Z.type.67cf45.2
- // CHECK:STDOUT: %Self => constants.%A
- // CHECK:STDOUT: %Z.WithSelf.F.type => constants.%Z.WithSelf.F.type.f05
- // CHECK:STDOUT: %Z.WithSelf.F => constants.%Z.WithSelf.F.364
- // CHECK:STDOUT: %Z.assoc_type => constants.%Z.assoc_type.221
- // CHECK:STDOUT: %assoc0 => constants.%assoc0.b43
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @X.WithSelf.Self.as_type.impls.Z.type.require(constants.%A) {
- // CHECK:STDOUT: %Self => constants.%A
- // CHECK:STDOUT: %Self.as_type => constants.%A.as_type
- // CHECK:STDOUT: %Z.type => constants.%Z.type.67cf45.2
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @Z.WithSelf(constants.%A.as_type, constants.%Z.facet) {
- // CHECK:STDOUT: !definition:
- // CHECK:STDOUT: %T => constants.%A.as_type
- // CHECK:STDOUT: %Z.type => constants.%Z.type.67cf45.2
- // CHECK:STDOUT: %Self => constants.%Z.facet
- // CHECK:STDOUT: %Z.WithSelf.F.type => constants.%Z.WithSelf.F.type.0d8
- // CHECK:STDOUT: %Z.WithSelf.F => constants.%Z.WithSelf.F.3cc
- // CHECK:STDOUT: %Z.assoc_type => constants.%Z.assoc_type.221
- // CHECK:STDOUT: %assoc0 => constants.%assoc0.b43
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @Z.WithSelf.F(constants.%A.as_type, constants.%Z.facet) {}
- // CHECK:STDOUT:
|