| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939 |
- // 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/multiple_extend.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/impl/multiple_extend.carbon
- // --- different_impl_member_names.carbon
- library "[[@TEST_NAME]]";
- interface HasF {
- fn F();
- }
- interface HasG {
- fn G();
- }
- class C {
- extend impl as HasF {
- fn F() {}
- }
- extend impl as HasG {
- fn G() {}
- }
- }
- fn H(c: C) {
- C.F();
- c.F();
- C.G();
- c.G();
- }
- // --- fail_ambiguous_impls.carbon
- library "[[@TEST_NAME]]";
- interface HasA1 {
- fn A();
- }
- interface HasA2 {
- fn A();
- }
- class D {
- extend impl as HasA1 {
- fn A() {}
- }
- extend impl as HasA2 {
- fn A() {}
- }
- }
- fn B(d: D) {
- // CHECK:STDERR: fail_ambiguous_impls.carbon:[[@LINE+4]]:3: error: ambiguous use of name `A` found in multiple extended scopes [NameAmbiguousDueToExtend]
- // CHECK:STDERR: D.A();
- // CHECK:STDERR: ^~~
- // CHECK:STDERR:
- D.A();
- // CHECK:STDERR: fail_ambiguous_impls.carbon:[[@LINE+4]]:3: error: ambiguous use of name `A` found in multiple extended scopes [NameAmbiguousDueToExtend]
- // CHECK:STDERR: d.A();
- // CHECK:STDERR: ^~~
- // CHECK:STDERR:
- d.A();
- }
- // --- different_impl_and_base.carbon
- library "[[@TEST_NAME]]";
- interface HasI {
- fn I();
- }
- base class B {
- fn J() {}
- }
- class E {
- extend base: B;
- extend impl as HasI {
- fn I() {}
- }
- }
- fn H(e: E) {
- E.I();
- e.I();
- E.J();
- e.J();
- }
- // --- fail_ambiguous_impl_and_base.carbon
- library "[[@TEST_NAME]]";
- base class Base {
- fn K() {}
- }
- interface HasK {
- fn K();
- }
- class L {
- extend base: Base;
- extend impl as HasK {
- fn K() {}
- }
- }
- fn M(l: L) {
- // CHECK:STDERR: fail_ambiguous_impl_and_base.carbon:[[@LINE+4]]:4: error: ambiguous use of name `K` found in multiple extended scopes [NameAmbiguousDueToExtend]
- // CHECK:STDERR: L.K();
- // CHECK:STDERR: ^~~
- // CHECK:STDERR:
- L.K();
- // CHECK:STDERR: fail_ambiguous_impl_and_base.carbon:[[@LINE+4]]:4: error: ambiguous use of name `K` found in multiple extended scopes [NameAmbiguousDueToExtend]
- // CHECK:STDERR: l.K();
- // CHECK:STDERR: ^~~
- // CHECK:STDERR:
- l.K();
- }
- // --- ambiguity_hidden.carbon
- library "[[@TEST_NAME]]";
- base class NBase {
- fn N() {}
- }
- interface HasN1 {
- fn N();
- }
- interface HasN2 {
- fn N();
- }
- class O {
- extend base: NBase;
- extend impl as HasN1 {
- fn N() {}
- }
- extend impl as HasN2 {
- fn N() {}
- }
- fn N();
- }
- fn P(o: O) {
- O.N();
- o.N();
- }
- // CHECK:STDOUT: --- different_impl_member_names.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %HasF.type: type = facet_type <@HasF> [template]
- // CHECK:STDOUT: %Self.f0c: %HasF.type = bind_symbolic_name Self, 0 [symbolic]
- // CHECK:STDOUT: %F.type.b7b: type = fn_type @F.1 [template]
- // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [template]
- // CHECK:STDOUT: %F.f50: %F.type.b7b = struct_value () [template]
- // CHECK:STDOUT: %HasF.assoc_type: type = assoc_entity_type %HasF.type [template]
- // CHECK:STDOUT: %assoc0.992: %HasF.assoc_type = assoc_entity element0, @HasF.%F.decl [template]
- // CHECK:STDOUT: %HasG.type: type = facet_type <@HasG> [template]
- // CHECK:STDOUT: %Self.d42: %HasG.type = bind_symbolic_name Self, 0 [symbolic]
- // CHECK:STDOUT: %G.type.d27: type = fn_type @G.1 [template]
- // CHECK:STDOUT: %G.688: %G.type.d27 = struct_value () [template]
- // CHECK:STDOUT: %HasG.assoc_type: type = assoc_entity_type %HasG.type [template]
- // CHECK:STDOUT: %assoc0.58a: %HasG.assoc_type = assoc_entity element0, @HasG.%G.decl [template]
- // CHECK:STDOUT: %C: type = class_type @C [template]
- // CHECK:STDOUT: %impl_witness.329: <witness> = impl_witness (@impl.1.%F.decl) [template]
- // CHECK:STDOUT: %F.type.a65: type = fn_type @F.2 [template]
- // CHECK:STDOUT: %F.ad8: %F.type.a65 = struct_value () [template]
- // CHECK:STDOUT: %HasF.facet: %HasF.type = facet_value %C, %impl_witness.329 [template]
- // CHECK:STDOUT: %impl_witness.42a: <witness> = impl_witness (@impl.2.%G.decl) [template]
- // CHECK:STDOUT: %G.type.cf6: type = fn_type @G.2 [template]
- // CHECK:STDOUT: %G.957: %G.type.cf6 = struct_value () [template]
- // CHECK:STDOUT: %HasG.facet: %HasG.type = facet_value %C, %impl_witness.42a [template]
- // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [template]
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [template]
- // CHECK:STDOUT: %H.type: type = fn_type @H [template]
- // CHECK:STDOUT: %H: %H.type = struct_value () [template]
- // CHECK:STDOUT: %.626: type = fn_type_with_self_type %F.type.b7b, %HasF.facet [template]
- // CHECK:STDOUT: %.790: type = fn_type_with_self_type %G.type.d27, %HasG.facet [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
- // CHECK:STDOUT: import Core//prelude
- // CHECK:STDOUT: import Core//prelude/...
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .HasF = %HasF.decl
- // CHECK:STDOUT: .HasG = %HasG.decl
- // CHECK:STDOUT: .C = %C.decl
- // CHECK:STDOUT: .H = %H.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %HasF.decl: type = interface_decl @HasF [template = constants.%HasF.type] {} {}
- // CHECK:STDOUT: %HasG.decl: type = interface_decl @HasG [template = constants.%HasG.type] {} {}
- // CHECK:STDOUT: %C.decl: type = class_decl @C [template = constants.%C] {} {}
- // CHECK:STDOUT: %H.decl: %H.type = fn_decl @H [template = constants.%H] {
- // CHECK:STDOUT: %c.patt: %C = binding_pattern c
- // CHECK:STDOUT: %c.param_patt: %C = value_param_pattern %c.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %c.param: %C = value_param runtime_param0
- // CHECK:STDOUT: %C.ref.loc21: type = name_ref C, file.%C.decl [template = constants.%C]
- // CHECK:STDOUT: %c: %C = bind_name c, %c.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: interface @HasF {
- // CHECK:STDOUT: %Self: %HasF.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.f0c]
- // CHECK:STDOUT: %F.decl: %F.type.b7b = fn_decl @F.1 [template = constants.%F.f50] {} {}
- // CHECK:STDOUT: %assoc0: %HasF.assoc_type = assoc_entity element0, %F.decl [template = constants.%assoc0.992]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = %Self
- // CHECK:STDOUT: .F = %assoc0
- // CHECK:STDOUT: witness = (%F.decl)
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: interface @HasG {
- // CHECK:STDOUT: %Self: %HasG.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.d42]
- // CHECK:STDOUT: %G.decl: %G.type.d27 = fn_decl @G.1 [template = constants.%G.688] {} {}
- // CHECK:STDOUT: %assoc0: %HasG.assoc_type = assoc_entity element0, %G.decl [template = constants.%assoc0.58a]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = %Self
- // CHECK:STDOUT: .G = %assoc0
- // CHECK:STDOUT: witness = (%G.decl)
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: impl @impl.1: %Self.ref as %HasF.ref {
- // CHECK:STDOUT: %F.decl: %F.type.a65 = fn_decl @F.2 [template = constants.%F.ad8] {} {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: witness = @C.%impl_witness.loc13
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: impl @impl.2: %Self.ref as %HasG.ref {
- // CHECK:STDOUT: %G.decl: %G.type.cf6 = fn_decl @G.2 [template = constants.%G.957] {} {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .G = %G.decl
- // CHECK:STDOUT: witness = @C.%impl_witness.loc16
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @C {
- // CHECK:STDOUT: impl_decl @impl.1 [template] {} {
- // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%C [template = constants.%C]
- // CHECK:STDOUT: %HasF.ref: type = name_ref HasF, file.%HasF.decl [template = constants.%HasF.type]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %impl_witness.loc13: <witness> = impl_witness (@impl.1.%F.decl) [template = constants.%impl_witness.329]
- // CHECK:STDOUT: impl_decl @impl.2 [template] {} {
- // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%C [template = constants.%C]
- // CHECK:STDOUT: %HasG.ref: type = name_ref HasG, file.%HasG.decl [template = constants.%HasG.type]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %impl_witness.loc16: <witness> = impl_witness (@impl.2.%G.decl) [template = constants.%impl_witness.42a]
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [template = constants.%complete_type]
- // CHECK:STDOUT: complete_type_witness = %complete_type
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%C
- // CHECK:STDOUT: extend @impl.1.%HasF.ref
- // CHECK:STDOUT: extend @impl.2.%HasG.ref
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic fn @F.1(@HasF.%Self: %HasF.type) {
- // CHECK:STDOUT: fn();
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic fn @G.1(@HasG.%Self: %HasG.type) {
- // CHECK:STDOUT: fn();
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F.2() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @G.2() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @H(%c.param_patt: %C) {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %C.ref.loc22: type = name_ref C, file.%C.decl [template = constants.%C]
- // CHECK:STDOUT: %F.ref.loc22: %HasF.assoc_type = name_ref F, @HasF.%assoc0 [template = constants.%assoc0.992]
- // CHECK:STDOUT: %impl.elem0.loc22: %.626 = impl_witness_access constants.%impl_witness.329, element0 [template = constants.%F.ad8]
- // CHECK:STDOUT: %F.call.loc22: init %empty_tuple.type = call %impl.elem0.loc22()
- // CHECK:STDOUT: %c.ref.loc23: %C = name_ref c, %c
- // CHECK:STDOUT: %F.ref.loc23: %HasF.assoc_type = name_ref F, @HasF.%assoc0 [template = constants.%assoc0.992]
- // CHECK:STDOUT: %impl.elem0.loc23: %.626 = impl_witness_access constants.%impl_witness.329, element0 [template = constants.%F.ad8]
- // CHECK:STDOUT: %F.call.loc23: init %empty_tuple.type = call %impl.elem0.loc23()
- // CHECK:STDOUT: %C.ref.loc24: type = name_ref C, file.%C.decl [template = constants.%C]
- // CHECK:STDOUT: %G.ref.loc24: %HasG.assoc_type = name_ref G, @HasG.%assoc0 [template = constants.%assoc0.58a]
- // CHECK:STDOUT: %impl.elem0.loc24: %.790 = impl_witness_access constants.%impl_witness.42a, element0 [template = constants.%G.957]
- // CHECK:STDOUT: %G.call.loc24: init %empty_tuple.type = call %impl.elem0.loc24()
- // CHECK:STDOUT: %c.ref.loc25: %C = name_ref c, %c
- // CHECK:STDOUT: %G.ref.loc25: %HasG.assoc_type = name_ref G, @HasG.%assoc0 [template = constants.%assoc0.58a]
- // CHECK:STDOUT: %impl.elem0.loc25: %.790 = impl_witness_access constants.%impl_witness.42a, element0 [template = constants.%G.957]
- // CHECK:STDOUT: %G.call.loc25: init %empty_tuple.type = call %impl.elem0.loc25()
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @F.1(constants.%Self.f0c) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @G.1(constants.%Self.d42) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @F.1(constants.%HasF.facet) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @G.1(constants.%HasG.facet) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: --- fail_ambiguous_impls.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %HasA1.type: type = facet_type <@HasA1> [template]
- // CHECK:STDOUT: %Self.90d: %HasA1.type = bind_symbolic_name Self, 0 [symbolic]
- // CHECK:STDOUT: %A.type.9c4: type = fn_type @A.1 [template]
- // CHECK:STDOUT: %A.c3c: %A.type.9c4 = struct_value () [template]
- // CHECK:STDOUT: %HasA1.assoc_type: type = assoc_entity_type %HasA1.type [template]
- // CHECK:STDOUT: %assoc0.b5a: %HasA1.assoc_type = assoc_entity element0, @HasA1.%A.decl [template]
- // CHECK:STDOUT: %HasA2.type: type = facet_type <@HasA2> [template]
- // CHECK:STDOUT: %Self.bdc: %HasA2.type = bind_symbolic_name Self, 0 [symbolic]
- // CHECK:STDOUT: %A.type.f71: type = fn_type @A.2 [template]
- // CHECK:STDOUT: %A.0eb: %A.type.f71 = struct_value () [template]
- // CHECK:STDOUT: %HasA2.assoc_type: type = assoc_entity_type %HasA2.type [template]
- // CHECK:STDOUT: %assoc0.6ed: %HasA2.assoc_type = assoc_entity element0, @HasA2.%A.decl [template]
- // CHECK:STDOUT: %D: type = class_type @D [template]
- // CHECK:STDOUT: %impl_witness.73a: <witness> = impl_witness (@impl.1.%A.decl) [template]
- // CHECK:STDOUT: %A.type.468: type = fn_type @A.3 [template]
- // CHECK:STDOUT: %A.efc: %A.type.468 = struct_value () [template]
- // CHECK:STDOUT: %HasA1.facet: %HasA1.type = facet_value %D, %impl_witness.73a [template]
- // CHECK:STDOUT: %impl_witness.baf: <witness> = impl_witness (@impl.2.%A.decl) [template]
- // CHECK:STDOUT: %A.type.938: type = fn_type @A.4 [template]
- // CHECK:STDOUT: %A.890: %A.type.938 = struct_value () [template]
- // CHECK:STDOUT: %HasA2.facet: %HasA2.type = facet_value %D, %impl_witness.baf [template]
- // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [template]
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [template]
- // CHECK:STDOUT: %B.type: type = fn_type @B [template]
- // CHECK:STDOUT: %B: %B.type = struct_value () [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
- // CHECK:STDOUT: import Core//prelude
- // CHECK:STDOUT: import Core//prelude/...
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .HasA1 = %HasA1.decl
- // CHECK:STDOUT: .HasA2 = %HasA2.decl
- // CHECK:STDOUT: .D = %D.decl
- // CHECK:STDOUT: .B = %B.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %HasA1.decl: type = interface_decl @HasA1 [template = constants.%HasA1.type] {} {}
- // CHECK:STDOUT: %HasA2.decl: type = interface_decl @HasA2 [template = constants.%HasA2.type] {} {}
- // CHECK:STDOUT: %D.decl: type = class_decl @D [template = constants.%D] {} {}
- // CHECK:STDOUT: %B.decl: %B.type = fn_decl @B [template = constants.%B] {
- // CHECK:STDOUT: %d.patt: %D = binding_pattern d
- // CHECK:STDOUT: %d.param_patt: %D = value_param_pattern %d.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %d.param: %D = value_param runtime_param0
- // CHECK:STDOUT: %D.ref.loc21: type = name_ref D, file.%D.decl [template = constants.%D]
- // CHECK:STDOUT: %d: %D = bind_name d, %d.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: interface @HasA1 {
- // CHECK:STDOUT: %Self: %HasA1.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.90d]
- // CHECK:STDOUT: %A.decl: %A.type.9c4 = fn_decl @A.1 [template = constants.%A.c3c] {} {}
- // CHECK:STDOUT: %assoc0: %HasA1.assoc_type = assoc_entity element0, %A.decl [template = constants.%assoc0.b5a]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = %Self
- // CHECK:STDOUT: .A = %assoc0
- // CHECK:STDOUT: witness = (%A.decl)
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: interface @HasA2 {
- // CHECK:STDOUT: %Self: %HasA2.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.bdc]
- // CHECK:STDOUT: %A.decl: %A.type.f71 = fn_decl @A.2 [template = constants.%A.0eb] {} {}
- // CHECK:STDOUT: %assoc0: %HasA2.assoc_type = assoc_entity element0, %A.decl [template = constants.%assoc0.6ed]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = %Self
- // CHECK:STDOUT: .A = %assoc0
- // CHECK:STDOUT: witness = (%A.decl)
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: impl @impl.1: %Self.ref as %HasA1.ref {
- // CHECK:STDOUT: %A.decl: %A.type.468 = fn_decl @A.3 [template = constants.%A.efc] {} {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .A = %A.decl
- // CHECK:STDOUT: witness = @D.%impl_witness.loc13
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: impl @impl.2: %Self.ref as %HasA2.ref {
- // CHECK:STDOUT: %A.decl: %A.type.938 = fn_decl @A.4 [template = constants.%A.890] {} {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .A = %A.decl
- // CHECK:STDOUT: witness = @D.%impl_witness.loc16
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @D {
- // CHECK:STDOUT: impl_decl @impl.1 [template] {} {
- // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%D [template = constants.%D]
- // CHECK:STDOUT: %HasA1.ref: type = name_ref HasA1, file.%HasA1.decl [template = constants.%HasA1.type]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %impl_witness.loc13: <witness> = impl_witness (@impl.1.%A.decl) [template = constants.%impl_witness.73a]
- // CHECK:STDOUT: impl_decl @impl.2 [template] {} {
- // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%D [template = constants.%D]
- // CHECK:STDOUT: %HasA2.ref: type = name_ref HasA2, file.%HasA2.decl [template = constants.%HasA2.type]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %impl_witness.loc16: <witness> = impl_witness (@impl.2.%A.decl) [template = constants.%impl_witness.baf]
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [template = constants.%complete_type]
- // CHECK:STDOUT: complete_type_witness = %complete_type
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%D
- // CHECK:STDOUT: extend @impl.1.%HasA1.ref
- // CHECK:STDOUT: extend @impl.2.%HasA2.ref
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic fn @A.1(@HasA1.%Self: %HasA1.type) {
- // CHECK:STDOUT: fn();
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic fn @A.2(@HasA2.%Self: %HasA2.type) {
- // CHECK:STDOUT: fn();
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @A.3() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @A.4() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @B(%d.param_patt: %D) {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %D.ref.loc26: type = name_ref D, file.%D.decl [template = constants.%D]
- // CHECK:STDOUT: %A.ref.loc26: <error> = name_ref A, <error> [template = <error>]
- // CHECK:STDOUT: %d.ref: %D = name_ref d, %d
- // CHECK:STDOUT: %A.ref.loc31: <error> = name_ref A, <error> [template = <error>]
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @A.1(constants.%Self.90d) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @A.2(constants.%Self.bdc) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @A.1(constants.%HasA1.facet) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @A.2(constants.%HasA2.facet) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: --- different_impl_and_base.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %HasI.type: type = facet_type <@HasI> [template]
- // CHECK:STDOUT: %Self: %HasI.type = bind_symbolic_name Self, 0 [symbolic]
- // CHECK:STDOUT: %I.type.9bd: type = fn_type @I.1 [template]
- // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [template]
- // CHECK:STDOUT: %I.0a6: %I.type.9bd = struct_value () [template]
- // CHECK:STDOUT: %HasI.assoc_type: type = assoc_entity_type %HasI.type [template]
- // CHECK:STDOUT: %assoc0: %HasI.assoc_type = assoc_entity element0, @HasI.%I.decl [template]
- // CHECK:STDOUT: %B: type = class_type @B [template]
- // CHECK:STDOUT: %J.type: type = fn_type @J [template]
- // CHECK:STDOUT: %J: %J.type = struct_value () [template]
- // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [template]
- // CHECK:STDOUT: %complete_type.357: <witness> = complete_type_witness %empty_struct_type [template]
- // CHECK:STDOUT: %E: type = class_type @E [template]
- // CHECK:STDOUT: %E.elem: type = unbound_element_type %E, %B [template]
- // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (@impl.%I.decl) [template]
- // CHECK:STDOUT: %I.type.395: type = fn_type @I.2 [template]
- // CHECK:STDOUT: %I.e74: %I.type.395 = struct_value () [template]
- // CHECK:STDOUT: %HasI.facet: %HasI.type = facet_value %E, %impl_witness [template]
- // CHECK:STDOUT: %struct_type.base.0ff: type = struct_type {.base: %B} [template]
- // CHECK:STDOUT: %complete_type.98e: <witness> = complete_type_witness %struct_type.base.0ff [template]
- // CHECK:STDOUT: %H.type: type = fn_type @H [template]
- // CHECK:STDOUT: %H: %H.type = struct_value () [template]
- // CHECK:STDOUT: %.83f: type = fn_type_with_self_type %I.type.9bd, %HasI.facet [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
- // CHECK:STDOUT: import Core//prelude
- // CHECK:STDOUT: import Core//prelude/...
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .HasI = %HasI.decl
- // CHECK:STDOUT: .B = %B.decl
- // CHECK:STDOUT: .E = %E.decl
- // CHECK:STDOUT: .H = %H.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %HasI.decl: type = interface_decl @HasI [template = constants.%HasI.type] {} {}
- // CHECK:STDOUT: %B.decl: type = class_decl @B [template = constants.%B] {} {}
- // CHECK:STDOUT: %E.decl: type = class_decl @E [template = constants.%E] {} {}
- // CHECK:STDOUT: %H.decl: %H.type = fn_decl @H [template = constants.%H] {
- // CHECK:STDOUT: %e.patt: %E = binding_pattern e
- // CHECK:STDOUT: %e.param_patt: %E = value_param_pattern %e.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %e.param: %E = value_param runtime_param0
- // CHECK:STDOUT: %E.ref.loc19: type = name_ref E, file.%E.decl [template = constants.%E]
- // CHECK:STDOUT: %e: %E = bind_name e, %e.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: interface @HasI {
- // CHECK:STDOUT: %Self: %HasI.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
- // CHECK:STDOUT: %I.decl: %I.type.9bd = fn_decl @I.1 [template = constants.%I.0a6] {} {}
- // CHECK:STDOUT: %assoc0: %HasI.assoc_type = assoc_entity element0, %I.decl [template = constants.%assoc0]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = %Self
- // CHECK:STDOUT: .I = %assoc0
- // CHECK:STDOUT: witness = (%I.decl)
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: impl @impl: %Self.ref as %HasI.ref {
- // CHECK:STDOUT: %I.decl: %I.type.395 = fn_decl @I.2 [template = constants.%I.e74] {} {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .I = %I.decl
- // CHECK:STDOUT: witness = @E.%impl_witness
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @B {
- // CHECK:STDOUT: %J.decl: %J.type = fn_decl @J [template = constants.%J] {} {}
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [template = constants.%complete_type.357]
- // CHECK:STDOUT: complete_type_witness = %complete_type
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%B
- // CHECK:STDOUT: .J = %J.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @E {
- // CHECK:STDOUT: %B.ref: type = name_ref B, file.%B.decl [template = constants.%B]
- // CHECK:STDOUT: %.loc13: %E.elem = base_decl %B.ref, element0 [template]
- // CHECK:STDOUT: impl_decl @impl [template] {} {
- // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%E [template = constants.%E]
- // CHECK:STDOUT: %HasI.ref: type = name_ref HasI, file.%HasI.decl [template = constants.%HasI.type]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (@impl.%I.decl) [template = constants.%impl_witness]
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %struct_type.base.0ff [template = constants.%complete_type.98e]
- // CHECK:STDOUT: complete_type_witness = %complete_type
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%E
- // CHECK:STDOUT: .base = %.loc13
- // CHECK:STDOUT: extend %B.ref
- // CHECK:STDOUT: extend @impl.%HasI.ref
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic fn @I.1(@HasI.%Self: %HasI.type) {
- // CHECK:STDOUT: fn();
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @J() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @I.2() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @H(%e.param_patt: %E) {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %E.ref.loc20: type = name_ref E, file.%E.decl [template = constants.%E]
- // CHECK:STDOUT: %I.ref.loc20: %HasI.assoc_type = name_ref I, @HasI.%assoc0 [template = constants.%assoc0]
- // CHECK:STDOUT: %impl.elem0.loc20: %.83f = impl_witness_access constants.%impl_witness, element0 [template = constants.%I.e74]
- // CHECK:STDOUT: %I.call.loc20: init %empty_tuple.type = call %impl.elem0.loc20()
- // CHECK:STDOUT: %e.ref.loc21: %E = name_ref e, %e
- // CHECK:STDOUT: %I.ref.loc21: %HasI.assoc_type = name_ref I, @HasI.%assoc0 [template = constants.%assoc0]
- // CHECK:STDOUT: %impl.elem0.loc21: %.83f = impl_witness_access constants.%impl_witness, element0 [template = constants.%I.e74]
- // CHECK:STDOUT: %I.call.loc21: init %empty_tuple.type = call %impl.elem0.loc21()
- // CHECK:STDOUT: %E.ref.loc22: type = name_ref E, file.%E.decl [template = constants.%E]
- // CHECK:STDOUT: %J.ref.loc22: %J.type = name_ref J, @B.%J.decl [template = constants.%J]
- // CHECK:STDOUT: %J.call.loc22: init %empty_tuple.type = call %J.ref.loc22()
- // CHECK:STDOUT: %e.ref.loc23: %E = name_ref e, %e
- // CHECK:STDOUT: %J.ref.loc23: %J.type = name_ref J, @B.%J.decl [template = constants.%J]
- // CHECK:STDOUT: %J.call.loc23: init %empty_tuple.type = call %J.ref.loc23()
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @I.1(constants.%Self) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @I.1(constants.%HasI.facet) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: --- fail_ambiguous_impl_and_base.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %Base: type = class_type @Base [template]
- // CHECK:STDOUT: %K.type.5a4: type = fn_type @K.1 [template]
- // CHECK:STDOUT: %K.801: %K.type.5a4 = struct_value () [template]
- // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [template]
- // CHECK:STDOUT: %complete_type.357: <witness> = complete_type_witness %empty_struct_type [template]
- // CHECK:STDOUT: %HasK.type: type = facet_type <@HasK> [template]
- // CHECK:STDOUT: %Self: %HasK.type = bind_symbolic_name Self, 0 [symbolic]
- // CHECK:STDOUT: %K.type.76f: type = fn_type @K.2 [template]
- // CHECK:STDOUT: %K.c0e: %K.type.76f = struct_value () [template]
- // CHECK:STDOUT: %HasK.assoc_type: type = assoc_entity_type %HasK.type [template]
- // CHECK:STDOUT: %assoc0: %HasK.assoc_type = assoc_entity element0, @HasK.%K.decl [template]
- // CHECK:STDOUT: %L: type = class_type @L [template]
- // CHECK:STDOUT: %L.elem: type = unbound_element_type %L, %Base [template]
- // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (@impl.%K.decl) [template]
- // CHECK:STDOUT: %K.type.bc2: type = fn_type @K.3 [template]
- // CHECK:STDOUT: %K.bd6: %K.type.bc2 = struct_value () [template]
- // CHECK:STDOUT: %HasK.facet: %HasK.type = facet_value %L, %impl_witness [template]
- // CHECK:STDOUT: %struct_type.base.b1e: type = struct_type {.base: %Base} [template]
- // CHECK:STDOUT: %complete_type.15c: <witness> = complete_type_witness %struct_type.base.b1e [template]
- // CHECK:STDOUT: %M.type: type = fn_type @M [template]
- // CHECK:STDOUT: %M: %M.type = struct_value () [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
- // CHECK:STDOUT: import Core//prelude
- // CHECK:STDOUT: import Core//prelude/...
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .Base = %Base.decl
- // CHECK:STDOUT: .HasK = %HasK.decl
- // CHECK:STDOUT: .L = %L.decl
- // CHECK:STDOUT: .M = %M.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %Base.decl: type = class_decl @Base [template = constants.%Base] {} {}
- // CHECK:STDOUT: %HasK.decl: type = interface_decl @HasK [template = constants.%HasK.type] {} {}
- // CHECK:STDOUT: %L.decl: type = class_decl @L [template = constants.%L] {} {}
- // CHECK:STDOUT: %M.decl: %M.type = fn_decl @M [template = constants.%M] {
- // CHECK:STDOUT: %l.patt: %L = binding_pattern l
- // CHECK:STDOUT: %l.param_patt: %L = value_param_pattern %l.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %l.param: %L = value_param runtime_param0
- // CHECK:STDOUT: %L.ref.loc19: type = name_ref L, file.%L.decl [template = constants.%L]
- // CHECK:STDOUT: %l: %L = bind_name l, %l.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: interface @HasK {
- // CHECK:STDOUT: %Self: %HasK.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self]
- // CHECK:STDOUT: %K.decl: %K.type.76f = fn_decl @K.2 [template = constants.%K.c0e] {} {}
- // CHECK:STDOUT: %assoc0: %HasK.assoc_type = assoc_entity element0, %K.decl [template = constants.%assoc0]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = %Self
- // CHECK:STDOUT: .K = %assoc0
- // CHECK:STDOUT: witness = (%K.decl)
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: impl @impl: %Self.ref as %HasK.ref {
- // CHECK:STDOUT: %K.decl: %K.type.bc2 = fn_decl @K.3 [template = constants.%K.bd6] {} {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .K = %K.decl
- // CHECK:STDOUT: witness = @L.%impl_witness
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @Base {
- // CHECK:STDOUT: %K.decl: %K.type.5a4 = fn_decl @K.1 [template = constants.%K.801] {} {}
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [template = constants.%complete_type.357]
- // CHECK:STDOUT: complete_type_witness = %complete_type
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%Base
- // CHECK:STDOUT: .K = %K.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @L {
- // CHECK:STDOUT: %Base.ref: type = name_ref Base, file.%Base.decl [template = constants.%Base]
- // CHECK:STDOUT: %.loc13: %L.elem = base_decl %Base.ref, element0 [template]
- // CHECK:STDOUT: impl_decl @impl [template] {} {
- // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%L [template = constants.%L]
- // CHECK:STDOUT: %HasK.ref: type = name_ref HasK, file.%HasK.decl [template = constants.%HasK.type]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %impl_witness: <witness> = impl_witness (@impl.%K.decl) [template = constants.%impl_witness]
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %struct_type.base.b1e [template = constants.%complete_type.15c]
- // CHECK:STDOUT: complete_type_witness = %complete_type
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%L
- // CHECK:STDOUT: .base = %.loc13
- // CHECK:STDOUT: extend %Base.ref
- // CHECK:STDOUT: extend @impl.%HasK.ref
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @K.1() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic fn @K.2(@HasK.%Self: %HasK.type) {
- // CHECK:STDOUT: fn();
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @K.3() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @M(%l.param_patt: %L) {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %L.ref.loc24: type = name_ref L, file.%L.decl [template = constants.%L]
- // CHECK:STDOUT: %K.ref.loc24: <error> = name_ref K, <error> [template = <error>]
- // CHECK:STDOUT: %l.ref: %L = name_ref l, %l
- // CHECK:STDOUT: %K.ref.loc29: <error> = name_ref K, <error> [template = <error>]
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @K.2(constants.%Self) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @K.2(constants.%HasK.facet) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: --- ambiguity_hidden.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %NBase: type = class_type @NBase [template]
- // CHECK:STDOUT: %N.type.fbf: type = fn_type @N.1 [template]
- // CHECK:STDOUT: %empty_tuple.type: type = tuple_type () [template]
- // CHECK:STDOUT: %N.897: %N.type.fbf = struct_value () [template]
- // CHECK:STDOUT: %empty_struct_type: type = struct_type {} [template]
- // CHECK:STDOUT: %complete_type.357: <witness> = complete_type_witness %empty_struct_type [template]
- // CHECK:STDOUT: %HasN1.type: type = facet_type <@HasN1> [template]
- // CHECK:STDOUT: %Self.e0b: %HasN1.type = bind_symbolic_name Self, 0 [symbolic]
- // CHECK:STDOUT: %N.type.3da: type = fn_type @N.2 [template]
- // CHECK:STDOUT: %N.a51: %N.type.3da = struct_value () [template]
- // CHECK:STDOUT: %HasN1.assoc_type: type = assoc_entity_type %HasN1.type [template]
- // CHECK:STDOUT: %assoc0.46d: %HasN1.assoc_type = assoc_entity element0, @HasN1.%N.decl [template]
- // CHECK:STDOUT: %HasN2.type: type = facet_type <@HasN2> [template]
- // CHECK:STDOUT: %Self.e6e: %HasN2.type = bind_symbolic_name Self, 0 [symbolic]
- // CHECK:STDOUT: %N.type.0aa: type = fn_type @N.3 [template]
- // CHECK:STDOUT: %N.1a4: %N.type.0aa = struct_value () [template]
- // CHECK:STDOUT: %HasN2.assoc_type: type = assoc_entity_type %HasN2.type [template]
- // CHECK:STDOUT: %assoc0.9ae: %HasN2.assoc_type = assoc_entity element0, @HasN2.%N.decl [template]
- // CHECK:STDOUT: %O: type = class_type @O [template]
- // CHECK:STDOUT: %O.elem: type = unbound_element_type %O, %NBase [template]
- // CHECK:STDOUT: %impl_witness.982: <witness> = impl_witness (@impl.1.%N.decl) [template]
- // CHECK:STDOUT: %N.type.ffc: type = fn_type @N.4 [template]
- // CHECK:STDOUT: %N.4f5: %N.type.ffc = struct_value () [template]
- // CHECK:STDOUT: %HasN1.facet: %HasN1.type = facet_value %O, %impl_witness.982 [template]
- // CHECK:STDOUT: %impl_witness.599: <witness> = impl_witness (@impl.2.%N.decl) [template]
- // CHECK:STDOUT: %N.type.8af: type = fn_type @N.5 [template]
- // CHECK:STDOUT: %N.308: %N.type.8af = struct_value () [template]
- // CHECK:STDOUT: %HasN2.facet: %HasN2.type = facet_value %O, %impl_witness.599 [template]
- // CHECK:STDOUT: %N.type.8b4: type = fn_type @N.6 [template]
- // CHECK:STDOUT: %N.cc3: %N.type.8b4 = struct_value () [template]
- // CHECK:STDOUT: %struct_type.base.9c6: type = struct_type {.base: %NBase} [template]
- // CHECK:STDOUT: %complete_type.121: <witness> = complete_type_witness %struct_type.base.9c6 [template]
- // CHECK:STDOUT: %P.type: type = fn_type @P [template]
- // CHECK:STDOUT: %P: %P.type = struct_value () [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: imports {
- // CHECK:STDOUT: %Core: <namespace> = namespace file.%Core.import, [template] {
- // CHECK:STDOUT: import Core//prelude
- // CHECK:STDOUT: import Core//prelude/...
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = imports.%Core
- // CHECK:STDOUT: .NBase = %NBase.decl
- // CHECK:STDOUT: .HasN1 = %HasN1.decl
- // CHECK:STDOUT: .HasN2 = %HasN2.decl
- // CHECK:STDOUT: .O = %O.decl
- // CHECK:STDOUT: .P = %P.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core.import = import Core
- // CHECK:STDOUT: %NBase.decl: type = class_decl @NBase [template = constants.%NBase] {} {}
- // CHECK:STDOUT: %HasN1.decl: type = interface_decl @HasN1 [template = constants.%HasN1.type] {} {}
- // CHECK:STDOUT: %HasN2.decl: type = interface_decl @HasN2 [template = constants.%HasN2.type] {} {}
- // CHECK:STDOUT: %O.decl: type = class_decl @O [template = constants.%O] {} {}
- // CHECK:STDOUT: %P.decl: %P.type = fn_decl @P [template = constants.%P] {
- // CHECK:STDOUT: %o.patt: %O = binding_pattern o
- // CHECK:STDOUT: %o.param_patt: %O = value_param_pattern %o.patt, runtime_param0
- // CHECK:STDOUT: } {
- // CHECK:STDOUT: %o.param: %O = value_param runtime_param0
- // CHECK:STDOUT: %O.ref.loc27: type = name_ref O, file.%O.decl [template = constants.%O]
- // CHECK:STDOUT: %o: %O = bind_name o, %o.param
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: interface @HasN1 {
- // CHECK:STDOUT: %Self: %HasN1.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.e0b]
- // CHECK:STDOUT: %N.decl: %N.type.3da = fn_decl @N.2 [template = constants.%N.a51] {} {}
- // CHECK:STDOUT: %assoc0: %HasN1.assoc_type = assoc_entity element0, %N.decl [template = constants.%assoc0.46d]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = %Self
- // CHECK:STDOUT: .N = %assoc0
- // CHECK:STDOUT: witness = (%N.decl)
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: interface @HasN2 {
- // CHECK:STDOUT: %Self: %HasN2.type = bind_symbolic_name Self, 0 [symbolic = constants.%Self.e6e]
- // CHECK:STDOUT: %N.decl: %N.type.0aa = fn_decl @N.3 [template = constants.%N.1a4] {} {}
- // CHECK:STDOUT: %assoc0: %HasN2.assoc_type = assoc_entity element0, %N.decl [template = constants.%assoc0.9ae]
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = %Self
- // CHECK:STDOUT: .N = %assoc0
- // CHECK:STDOUT: witness = (%N.decl)
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: impl @impl.1: %Self.ref as %HasN1.ref {
- // CHECK:STDOUT: %N.decl: %N.type.ffc = fn_decl @N.4 [template = constants.%N.4f5] {} {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .N = %N.decl
- // CHECK:STDOUT: witness = @O.%impl_witness.loc18
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: impl @impl.2: %Self.ref as %HasN2.ref {
- // CHECK:STDOUT: %N.decl: %N.type.8af = fn_decl @N.5 [template = constants.%N.308] {} {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .N = %N.decl
- // CHECK:STDOUT: witness = @O.%impl_witness.loc21
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @NBase {
- // CHECK:STDOUT: %N.decl: %N.type.fbf = fn_decl @N.1 [template = constants.%N.897] {} {}
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %empty_struct_type [template = constants.%complete_type.357]
- // CHECK:STDOUT: complete_type_witness = %complete_type
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%NBase
- // CHECK:STDOUT: .N = %N.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @O {
- // CHECK:STDOUT: %NBase.ref: type = name_ref NBase, file.%NBase.decl [template = constants.%NBase]
- // CHECK:STDOUT: %.loc17: %O.elem = base_decl %NBase.ref, element0 [template]
- // CHECK:STDOUT: impl_decl @impl.1 [template] {} {
- // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%O [template = constants.%O]
- // CHECK:STDOUT: %HasN1.ref: type = name_ref HasN1, file.%HasN1.decl [template = constants.%HasN1.type]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %impl_witness.loc18: <witness> = impl_witness (@impl.1.%N.decl) [template = constants.%impl_witness.982]
- // CHECK:STDOUT: impl_decl @impl.2 [template] {} {
- // CHECK:STDOUT: %Self.ref: type = name_ref Self, constants.%O [template = constants.%O]
- // CHECK:STDOUT: %HasN2.ref: type = name_ref HasN2, file.%HasN2.decl [template = constants.%HasN2.type]
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %impl_witness.loc21: <witness> = impl_witness (@impl.2.%N.decl) [template = constants.%impl_witness.599]
- // CHECK:STDOUT: %N.decl: %N.type.8b4 = fn_decl @N.6 [template = constants.%N.cc3] {} {}
- // CHECK:STDOUT: %complete_type: <witness> = complete_type_witness %struct_type.base.9c6 [template = constants.%complete_type.121]
- // CHECK:STDOUT: complete_type_witness = %complete_type
- // CHECK:STDOUT:
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%O
- // CHECK:STDOUT: .base = %.loc17
- // CHECK:STDOUT: .N = %N.decl
- // CHECK:STDOUT: extend %NBase.ref
- // CHECK:STDOUT: extend @impl.1.%HasN1.ref
- // CHECK:STDOUT: extend @impl.2.%HasN2.ref
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @N.1() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic fn @N.2(@HasN1.%Self: %HasN1.type) {
- // CHECK:STDOUT: fn();
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: generic fn @N.3(@HasN2.%Self: %HasN2.type) {
- // CHECK:STDOUT: fn();
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @N.4() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @N.5() {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @N.6();
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @P(%o.param_patt: %O) {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %O.ref.loc28: type = name_ref O, file.%O.decl [template = constants.%O]
- // CHECK:STDOUT: %N.ref.loc28: %N.type.8b4 = name_ref N, @O.%N.decl [template = constants.%N.cc3]
- // CHECK:STDOUT: %N.call.loc28: init %empty_tuple.type = call %N.ref.loc28()
- // CHECK:STDOUT: %o.ref: %O = name_ref o, %o
- // CHECK:STDOUT: %N.ref.loc29: %N.type.8b4 = name_ref N, @O.%N.decl [template = constants.%N.cc3]
- // CHECK:STDOUT: %N.call.loc29: init %empty_tuple.type = call %N.ref.loc29()
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @N.2(constants.%Self.e0b) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @N.3(constants.%Self.e6e) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @N.2(constants.%HasN1.facet) {}
- // CHECK:STDOUT:
- // CHECK:STDOUT: specific @N.3(constants.%HasN2.facet) {}
- // CHECK:STDOUT:
|