| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320 |
- // 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/convert.carbon
- //
- // AUTOUPDATE
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/facet/validate_rewrite_constraints.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/facet/validate_rewrite_constraints.carbon
- // --- facet_value.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- fn F(T:! I where .X = ()) {}
- fn G(T:! I where .X = ()) {
- F(T);
- }
- // --- generic_interface_facet_value.carbon
- library "[[@TEST_NAME]]";
- interface I(T:! type) { let X:! type; }
- class C;
- final impl forall [T:! type] T as I(()) where .X = () {}
- final impl forall [T:! type] T as I({}) where .X = {} {}
- fn F(U:! type, T:! I(U) where .X = ()) {}
- fn G() {
- F((), C);
- }
- // --- fail_generic_interface_facet_value_wrong_specific_impl.carbon
- library "[[@TEST_NAME]]";
- interface I(T:! type) { let X:! type; }
- class C;
- final impl forall [T:! type] T as I(()) where .X = () {}
- final impl forall [T:! type] T as I({}) where .X = {} {}
- fn F(U:! type, T:! I(U) where .X = ()) {}
- fn G() {
- // This finds the impl where `.X = {}`, but F requires that `.X = ()`.
- //
- // CHECK:STDERR: fail_generic_interface_facet_value_wrong_specific_impl.carbon:[[@LINE+7]]:3: error: cannot convert type `C` into type implementing `I({}) where .(I({}).X) = ()` [ConversionFailureTypeToFacet]
- // CHECK:STDERR: F({}, C);
- // CHECK:STDERR: ^~~~~~~~
- // CHECK:STDERR: fail_generic_interface_facet_value_wrong_specific_impl.carbon:[[@LINE-7]]:1: note: while deducing parameters of generic declared here [DeductionGenericHere]
- // CHECK:STDERR: fn F(U:! type, T:! I(U) where .X = ()) {}
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // CHECK:STDERR:
- F({}, C);
- }
- // --- dependent_rules.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- interface J { let Y:! type; }
- fn F(T:! I & J where .X = .Y) {
- // Allowed since `T impls I`, `T impls J`, and has constraint providing
- // T.(I.X) = T.(J.Y)`.
- F(T);
- }
- // --- fail_convert.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- fn F(T:! I where .X = {.a: (), .b: {}}) {}
- fn H() {
- class C;
- impl C as I where .X = {.b: {}, .a: ()} {}
- // CHECK:STDERR: fail_convert.carbon:[[@LINE+7]]:3: error: cannot convert type `C` into type implementing `I where .(I.X) = {.a: (), .b: {}}` [ConversionFailureTypeToFacet]
- // CHECK:STDERR: F(C);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_convert.carbon:[[@LINE-8]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I where .X = {.a: (), .b: {}}) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(C);
- }
- fn G(T:! I where .X = {.b: {}, .a: ()}) {
- // CHECK:STDERR: fail_convert.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I where .(I.X) = {.b: {}, .a: ()}` into type implementing `I where .(I.X) = {.a: (), .b: {}}` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_convert.carbon:[[@LINE-19]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I where .X = {.a: (), .b: {}}) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- // --- fail_todo_dependent_rules_compound.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- interface J { let Y:! type; }
- // CHECK:STDERR: fail_todo_dependent_rules_compound.carbon:[[@LINE+8]]:23: error: expected identifier or `Self` after `.` [ExpectedIdentifierOrSelfAfterPeriod]
- // CHECK:STDERR: fn F(T:! I & J where .(I.X) = .(J.Y)) {
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- // CHECK:STDERR: fail_todo_dependent_rules_compound.carbon:[[@LINE+4]]:23: error: semantics TODO: `handle invalid parse trees in `check`` [SemanticsTodo]
- // CHECK:STDERR: fn F(T:! I & J where .(I.X) = .(J.Y)) {
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- fn F(T:! I & J where .(I.X) = .(J.Y)) {
- // Allowed since `T impls I`, `T impls J`, and has constraint providing
- // T.(I.X) = T.(J.Y)`.
- F(T);
- }
- // --- parameterized_interface.carbon
- library "[[@TEST_NAME]]";
- interface I(T:! type) { let X:! type; }
- final impl forall [J:! I(()) where .X = ()] J as I({}) where .X = {} {}
- fn F(T:! I({}) where .X = {}) {}
- fn G(T:! I(()) where .X = ()) {
- F(T);
- }
- // --- fail_todo_parameterized_interface_compound.carbon
- library "[[@TEST_NAME]]";
- interface I(T:! type) { let X:! type; }
- final impl forall [J:! I(())] J as I({}) where .X = {} {}
- // CHECK:STDERR: fail_todo_parameterized_interface_compound.carbon:[[@LINE+8]]:31: error: expected identifier or `Self` after `.` [ExpectedIdentifierOrSelfAfterPeriod]
- // CHECK:STDERR: fn F(T:! I(()) & I({}) where .(I(()).X) = () and .(I({}).X) = {}) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- // CHECK:STDERR: fail_todo_parameterized_interface_compound.carbon:[[@LINE+4]]:31: error: semantics TODO: `handle invalid parse trees in `check`` [SemanticsTodo]
- // CHECK:STDERR: fn F(T:! I(()) & I({}) where .(I(()).X) = () and .(I({}).X) = {}) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- fn F(T:! I(()) & I({}) where .(I(()).X) = () and .(I({}).X) = {}) {}
- fn G(T:! I(()) where .X = ()) {
- F(T);
- }
- // --- fail_parameterized_interface_with_wrong_where_in_impl_deduction.carbon
- library "[[@TEST_NAME]]";
- interface I(T:! type) { let X:! type; }
- final impl forall [J:! I(()) where .X = {}] J as I({}) where .X = {} {}
- fn F(T:! I({}) where .X = {}) {}
- fn G(T:! I(()) where .X = ()) {
- // CHECK:STDERR: fail_parameterized_interface_with_wrong_where_in_impl_deduction.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I(()) where .(I(()).X) = ()` into type implementing `I({}) where .(I({}).X) = {}` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_parameterized_interface_with_wrong_where_in_impl_deduction.carbon:[[@LINE-6]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I({}) where .X = {}) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- // --- source_rhs_is_assoc_constant.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X1:! type;
- let X2:! type;
- }
- fn F(T:! I where .X1 = () and .X2 = ()) {}
- fn G() {
- class C;
- impl C as I where .X1 = .X2 and .X2 = () {}
- F(C);
- }
- fn H(T:! I where .X1 = .X2 and .X2 = ()) {
- F(T);
- }
- // --- target_rhs_is_assoc_constant.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X1:! type;
- let X2:! type;
- }
- fn F(T:! I where .X1 = .X2 and .X2 = ()) {}
- fn G() {
- class C;
- impl C as I where .X1 = () and .X2 = () {}
- F(C);
- }
- fn H(T:! I where .X1 = () and .X2 = ()) {
- F(T);
- }
- // --- both_rhs_is_assoc_constant.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X1:! type;
- let X2:! type;
- }
- fn F(T:! I where .X1 = .X2 and .X2 = ()) {}
- fn G() {
- class C1;
- impl C1 as I where .X1 = .X2 and .X2 = () {}
- F(C1);
- class C2;
- impl C2 as I where .X1 = () and .X2 = .X1 {}
- F(C2);
- }
- fn H1(T:! I where .X1 = .X2 and .X2 = ()) {
- F(T);
- }
- fn H2(T:! I where .X1 = () and .X2 = .X1) {
- F(T);
- }
- // --- fail_error_in_witness_table.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X1:! type;
- let X2:! type;
- }
- fn F(T:! I where .X1 = .X2) {}
- class C;
- // .X2 is not set in the impl definition, so its value is an ErrorInst
- // in the impl's witness table.
- //
- // CHECK:STDERR: fail_error_in_witness_table.carbon:[[@LINE+7]]:1: error: associated constant X2 not given a value in impl of interface I [ImplAssociatedConstantNeedsValue]
- // CHECK:STDERR: impl C as I where .X1 = () {}
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // CHECK:STDERR: fail_error_in_witness_table.carbon:[[@LINE-12]]:7: note: associated constant declared here [AssociatedConstantHere]
- // CHECK:STDERR: let X2:! type;
- // CHECK:STDERR: ^~~~~~~~~
- // CHECK:STDERR:
- impl C as I where .X1 = () {}
- fn G() {
- // CHECK:STDERR: fail_error_in_witness_table.carbon:[[@LINE+7]]:3: error: cannot convert type `C` into type implementing `I where .(I.X1) = .(I.X2)` [ConversionFailureTypeToFacet]
- // CHECK:STDERR: F(C);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_error_in_witness_table.carbon:[[@LINE-19]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I where .X1 = .X2) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(C);
- }
- // --- impl_provides_rewrite_requirements.carbon
- library "[[@TEST_NAME]]";
- interface I {}
- interface J { let Y:! type; }
- class C;
- final impl forall [T:! I] T as J where .Y = C {}
- fn F(T:! I & J where .Y = C) {}
- fn G(T:! I) {
- F(T);
- }
- // --- facet_provides_rewrite_requirements.carbon
- library "[[@TEST_NAME]]";
- interface I {}
- interface J { let Y:! type; }
- class C;
- final impl forall [T:! J] T as I {}
- fn F(T:! I & J where .Y = C) {}
- fn G(T:! J where .Y = C) {
- F(T);
- }
- // --- fail_non_final_impl_deduce.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- impl forall [U:! type] U as I where .X = () {}
- fn F(T:! I where .X = ()) {}
- class C(T:! type);
- fn G(T:! type) {
- // The type `C(T)` is generic so that the resulting impl witness will not be
- // effectively final.
- //
- // CHECK:STDERR: fail_non_final_impl_deduce.carbon:[[@LINE+7]]:3: error: cannot convert type `C(T)` into type implementing `I where .(I.X) = ()` [ConversionFailureTypeToFacet]
- // CHECK:STDERR: F(C(T));
- // CHECK:STDERR: ^~~~~~~
- // CHECK:STDERR: fail_non_final_impl_deduce.carbon:[[@LINE-11]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I where .X = ()) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(C(T));
- }
- // --- fail_non_final_impl_explicit.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- impl forall [U:! type] U as I where .X = () {}
- class C(T:! type);
- fn F(T:! type) {
- // The type `C(T)` is generic so that the resulting impl witness will not be
- // effectively final.
- //
- // CHECK:STDERR: fail_non_final_impl_explicit.carbon:[[@LINE+4]]:3: error: cannot convert type `C(T)` into type implementing `I where .(I.X) = ()` [ConversionFailureTypeToFacet]
- // CHECK:STDERR: C(T) as (I where .X = ());
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~
- // CHECK:STDERR:
- C(T) as (I where .X = ());
- }
- // --- concrete_query_non_final_impl_deduce.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- impl forall [U:! type] U as I where .X = () {}
- fn F(T:! I where .X = ()) {}
- fn G() {
- class C;
- F(C);
- }
- // --- concrete_query_non_final_impl_explicit_as.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- impl forall [U:! type] U as I where .X = () {}
- fn F() {
- class C;
- C as (I where .X = ());
- }
- // --- final_impl_deduce.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- final impl forall [U:! type] U as I where .X = () {}
- fn F(T:! I where .X = ()) {}
- fn G() {
- class C;
- F(C);
- }
- // --- final_impl_explicit_as.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- final impl forall [U:! type] U as I where .X = () {}
- fn F() {
- class C;
- C as (I where .X = ());
- }
- // --- concrete_specialization_impl_deduce.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- class C;
- impl C as I where .X = () {}
- fn F(T:! I where .X = ()) {}
- fn G() {
- F(C);
- }
- // --- concrete_specialization_impl_explicit_as.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- class C;
- impl C as I where .X = () {}
- fn F() {
- C as (I where .X = ());
- }
- // --- rewrite_value_in_class_param.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- let Y:! type;
- }
- class C(T:! type);
- fn F(T:! I where .X = C(.Y)) {}
- fn G(T:! I where .X = C(()) and .Y = ()) {
- F(T);
- }
- // --- fail_wrong_rewrite_value_in_class_param.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- let Y:! type;
- }
- class C(T:! type);
- fn F(T:! I where .X = C(.Y)) {}
- fn G(T:! I where .X = C(()) and .Y = {}) {
- // CHECK:STDERR: fail_wrong_rewrite_value_in_class_param.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I where .(I.X) = C(()) and .(I.Y) = {}` into type implementing `I where .(I.X) = C(.(I.Y))` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_wrong_rewrite_value_in_class_param.carbon:[[@LINE-6]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I where .X = C(.Y)) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- // --- function_in_interface_ignored.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- fn F();
- }
- fn F(T:! I where .X = ()) {}
- fn G(T:! I where .X = ()) {
- F(T);
- }
- // --- function_as_rewrite_value.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- let Y:! X;
- fn A();
- }
- fn F(T:! I where .Y = .A) {}
- fn G(T:! I where .Y = .A) {
- F(T);
- }
- // --- fail_wrong_function_as_rewrite_value.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- let Y:! X;
- fn A();
- fn B();
- }
- fn F(T:! I where .Y = .A) {}
- fn G(T:! I where .Y = .B) {
- // CHECK:STDERR: fail_wrong_function_as_rewrite_value.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I where .(I.Y) = .(I.B)` into type implementing `I where .(I.Y) = .(I.A)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_wrong_function_as_rewrite_value.carbon:[[@LINE-6]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I where .Y = .A) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- // --- fail_wrong_function_as_rewrite_value_in_other_interface.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- let Y:! X;
- fn A();
- }
- interface J {
- let J1:! type;
- let J2:! type;
- // B has the same index in J as A does in I, ensuring the index is not enough
- // for comparing them.
- fn B();
- }
- fn F(T:! I & J where .Y = .A) {}
- fn G(T:! I & J where .Y = .B) {
- // CHECK:STDERR: fail_wrong_function_as_rewrite_value_in_other_interface.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I & J where .(I.Y) = .(J.B)` into type implementing `I & J where .(I.Y) = .(I.A)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_wrong_function_as_rewrite_value_in_other_interface.carbon:[[@LINE-6]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I & J where .Y = .A) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- // --- recursive_facet.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- interface K(Y:! type) { }
- fn F(T:! I where .X = {.k: K(I where .X = ())}) {}
- fn G(T:! I where .X = {.k: K(I where .X = ())}) {
- F(T);
- }
- // --- fail_facet_type_concrete_types_match_blanket_impl_concrete_types.carbon
- library "[[@TEST_NAME]]";
- interface A { let X:! type; }
- interface B { let Y:! type; }
- interface C(BB:! B) { let AX:! type; let BY:! type; }
- impl forall [AA:! A, BB:! B] AA as C(BB) where .AX = () and .BY = {} {}
- fn F(AA:! A where .X = (), BB:! B where .Y = {}) {
- // The types match but there may be a specialization that specifies different
- // types and would be prefered for a specific `AA` or `BB`.
- //
- // CHECK:STDERR: fail_facet_type_concrete_types_match_blanket_impl_concrete_types.carbon:[[@LINE+4]]:3: error: cannot convert type `AA` that implements `A where .(A.X) = ()` into type implementing `C(BB as B) where .(C(BB as B).AX) = () and .(C(BB as B).BY) = {}` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: AA as (C(BB) where .AX = () and .BY = {});
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // CHECK:STDERR:
- AA as (C(BB) where .AX = () and .BY = {});
- }
- // --- fail_facet_type_concrete_types_become_blank_impl_types.carbon
- library "[[@TEST_NAME]]";
- interface A { let X:! type; }
- interface B { let Y:! type; }
- interface C(BB:! B) { let AX:! type; let BY:! type; }
- impl forall [AA:! A, BB:! B] AA as C(BB) where .AX = AA.X and .BY = BB.Y {}
- fn F(AA:! A where .X = (), BB:! B where .Y = {}) {
- // The types match but there may be a specialization that specifies different
- // types and would be prefered for a specific `AA` or `BB`.
- //
- // CHECK:STDERR: fail_facet_type_concrete_types_become_blank_impl_types.carbon:[[@LINE+4]]:3: error: cannot convert type `AA` that implements `A where .(A.X) = ()` into type implementing `C(BB as B) where .(C(BB as B).AX) = () and .(C(BB as B).BY) = {}` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: AA as (C(BB) where .AX = () and .BY = {});
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // CHECK:STDERR:
- AA as (C(BB) where .AX = () and .BY = {});
- }
- // --- facet_type_concrete_types_match_final_blanket_impl_concrete_types.carbon
- library "[[@TEST_NAME]]";
- interface A { let X:! type; }
- interface B { let Y:! type; }
- interface C(BB:! B) { let AX:! type; let BY:! type; }
- final impl forall [AA:! A, BB:! B] AA as C(BB) where .AX = () and .BY = {} {}
- fn F(AA:! A where .X = (), BB:! B where .Y = {}) {
- AA as (C(BB) where .AX = () and .BY = {});
- }
- // --- facet_type_concrete_types_become_final_blanket_impl_types.carbon
- library "[[@TEST_NAME]]";
- interface A { let X:! type; }
- interface B { let Y:! type; }
- interface C(BB:! B) { let AX:! type; let BY:! type; }
- final impl forall [AA:! A, BB:! B] AA as C(BB) where .AX = AA.X and .BY = BB.Y {}
- fn F(AA:! A where .X = (), BB:! B where .Y = {}) {
- AA as (C(BB) where .AX = () and .BY = {});
- }
- // --- fail_facet_type_concrete_types_become_final_blanket_impl_types_wrong_types.carbon
- library "[[@TEST_NAME]]";
- interface A { let X:! type; }
- interface B { let Y:! type; }
- interface C(BB:! B) { let AX:! type; let BY:! type; }
- final impl forall [AA:! A, BB:! B] AA as C(BB) where .AX = AA.X and .BY = BB.Y {}
- fn F(AA:! A where .X = (), BB:! B where .Y = {}) {
- // CHECK:STDERR: fail_facet_type_concrete_types_become_final_blanket_impl_types_wrong_types.carbon:[[@LINE+4]]:3: error: cannot convert type `AA` that implements `A where .(A.X) = ()` into type implementing `C(BB as B) where .(C(BB as B).AX) = {} and .(C(BB as B).BY) = ()` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: AA as (C(BB) where .AX = {} and .BY = ());
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // CHECK:STDERR:
- AA as (C(BB) where .AX = {} and .BY = ());
- }
- // --- chain_in_target.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X1:! type;
- let X2:! type;
- let X3:! type;
- }
- class C(T:! type);
- fn F(T:! I where .X1 = .X3 and .X2 = C(.X3) and .X3 = ()) {}
- fn G(T:! I where .X1 = () and .X2 = C(()) and .X3 = ()) {
- F(T);
- }
- // --- chain_in_source.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X1:! type;
- let X2:! type;
- let X3:! type;
- }
- class C(T:! type);
- fn F(T:! I where .X1 = () and .X2 = C(()) and .X3 = .X1) {}
- fn G(T:! I where .X1 = .X3 and .X2 = C(.X1) and .X3 = ()) {
- F(T);
- }
- // --- reference_other_facet_value.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X1:! type;
- let X2:! type;
- }
- fn F(U:! I where .X1 = {}, T:! I where .X1 = () and .X2 = U.X1) {}
- fn G(U:! I where .X1 = {} and .X2 = (), T:! I where .X1 = U.X2 and .X2 = {}) {
- F(U, T);
- }
- // --- fail_todo_value_through_self_value.carbon
- library "[[@TEST_NAME]]";
- interface I {
- // TODO: This should not be diagnosed.
- //
- // CHECK:STDERR: fail_todo_value_through_self_value.carbon:[[@LINE+7]]:12: error: associated constant has incomplete type `I` [IncompleteTypeInAssociatedConstantDecl]
- // CHECK:STDERR: let X1:! I;
- // CHECK:STDERR: ^
- // CHECK:STDERR: fail_todo_value_through_self_value.carbon:[[@LINE-6]]:1: note: interface is currently being defined [InterfaceIncompleteWithinDefinition]
- // CHECK:STDERR: interface I {
- // CHECK:STDERR: ^~~~~~~~~~~~~
- // CHECK:STDERR:
- let X1:! I;
- let X2:! type;
- let X3:! type;
- }
- fn F(T:! I where .X1 = .Self and .X2 = .X1.X3 and .X3 = ());
- fn G(T:! I where .X1 = .Self and .X2 = () and .X3 = ()) {
- F(T);
- }
- fn H(T:! I where .X1 = .Self and .X2 = .X1.X3 and .X3 = ()) {
- G(T);
- }
- // --- associated_constant_is_facet_type_of_same_interface.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let A:! type;
- let X:! type;
- }
- class C;
- // This looks for a bug where `.Self.A` resolves to `C` from `.T.A` in the
- // incoming facet value, which is incorrect. It should be `.T.X.A` which
- // resolves to `{}`.
- fn F(U:! I where .X = (I where .A = {})) {}
- fn G(T:! I where .X = (I where .A = {}) and .A = C) {
- F(T);
- }
- // --- rewrite_requires_subst_in_rhs.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- let Y:! type;
- }
- class C(T:! type);
- fn F(T:! I where .X = C(.Y)) {}
- fn G(T:! I where .X = C({}) and .Y = {}) {
- F(T);
- }
- // --- fail_todo_rewrite_requires_subst_in_nested_facet_type.carbon
- library "[[@TEST_NAME]]";
- interface I(T:! type) {
- let X:! type;
- let Y:! type;
- }
- class C;
- fn F(T:! I(C) where .X = (I(.Y) where .Y = ())) {}
- fn G(T:! I(C) where .X = (I({}) where .Y = ()) and .Y = {}) {
- // TODO: The T in G should match the T in F, once the .Self reference to the
- // top level facet value in `I(.Y)` is correctly substituted by tracking that
- // it is a .Self reference to the top level Self.
- // CHECK:STDERR: fail_todo_rewrite_requires_subst_in_nested_facet_type.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I(C) where .(I(C).X) = I({}) where .(I({}).Y) = () and .(I(C).Y) = {}` into type implementing `I(C) where .(I(C).X) = I(.(I(C).Y)) where .(I(.(I(C).Y)).Y) = ()` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_todo_rewrite_requires_subst_in_nested_facet_type.carbon:[[@LINE-9]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I(C) where .X = (I(.Y) where .Y = ())) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- fn G2(T:! I(C) where .X = (I(.Y) where .Y = ()) and .Y = {}) {
- F(T);
- }
- // --- fail_rewrite_requires_subst_in_nested_facet_type_types_differ.carbon
- library "[[@TEST_NAME]]";
- interface I(T:! type) {
- let X:! type;
- let Y:! type;
- }
- fn F(T:! I({}) where .X = (I(.Y) where .X = ())) {}
- // I(.Y) is I({}) which doesn't match I(()).
- fn G(T:! I({}) where .X = (I(()) where .X = ()) and .Y = {}) {
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_facet_type_types_differ.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I({}) where .(I({}).X) = I(()) where .(I(()).X) = () and .(I({}).Y) = {}` into type implementing `I({}) where .(I({}).X) = I(.(I({}).Y)) where .(I(.(I({}).Y)).X) = ()` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_facet_type_types_differ.carbon:[[@LINE-7]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I({}) where .X = (I(.Y) where .X = ())) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- // --- facet_type_in_assoc_constant.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- let Y:! type;
- }
- fn F(T:! I where .X = (I where .X = () and .Y = ())) {}
- fn G(T:! I where .X = (I where .X = .Y and .Y = ())) {
- F(T);
- }
- // --- fail_facet_type_in_assoc_constant_differs.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- let Y:! type;
- let Z:! type;
- }
- fn F(T:! I where .X = (I where .X = .Y)) {}
- fn G(T:! I where .X = (I where .X = () and .Y = () and .Z = {})) {
- // CHECK:STDERR: fail_facet_type_in_assoc_constant_differs.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I where .(I.X) = I where .(I.X) = () and .(I.Y) = () and .(I.Z) = {}` into type implementing `I where .(I.X) = I where .(I.X) = .(I.Y)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_facet_type_in_assoc_constant_differs.carbon:[[@LINE-6]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I where .X = (I where .X = .Y)) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- // --- nested_facet_type_in_assoc_constant.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- let Y:! type;
- let Z:! type;
- }
- fn F(T:! I where .X = (I where .Y = (I where .X = () and .Y = ()))) {}
- fn G(T:! I where .X = (I where .Y = (I where .X = .Y and .Y = ()))) {
- F(T);
- }
- // --- fail_nested_facet_type_assigns_same_assoc_constant.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- let Y:! type;
- }
- fn F(T:! I where .Y = ()) {}
- // The `.Y = ()` is on a different `.Self` than `T` (an unattached self), so
- // should not satisfy `F`.
- fn G(T:! I where .X = (I where .Y = ())) {
- // CHECK:STDERR: fail_nested_facet_type_assigns_same_assoc_constant.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I where .(I.X) = I where .(I.Y) = ()` into type implementing `I where .(I.Y) = ()` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_nested_facet_type_assigns_same_assoc_constant.carbon:[[@LINE-8]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I where .Y = ()) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- // --- fail_nested_facet_type_in_assoc_constant_differs.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- let Y:! type;
- let Z:! type;
- }
- fn F(T:! I where .X = (I where .Y = (I where .X = .Y))) {}
- // `.X = .Y` does not match `.X = () and .Y = ()` as they are different resolved
- // facet types.
- fn G(T:! I where .X = (I where .Y = (I where .X = () and .Y = ()))) {
- // CHECK:STDERR: fail_nested_facet_type_in_assoc_constant_differs.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I where .(I.X) = I where .(I.Y) = I where .(I.X) = () and .(I.Y) = ()` into type implementing `I where .(I.X) = I where .(I.Y) = I where .(I.X) = .(I.Y)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_nested_facet_type_in_assoc_constant_differs.carbon:[[@LINE-8]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I where .X = (I where .Y = (I where .X = .Y))) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- // The extra .Z rewrite makes a different resolved facet type which does not
- // match.
- fn G2(T:! I where .X = (I where .Y = (I where .X = .Y and .Z = {}))) {
- // CHECK:STDERR: fail_nested_facet_type_in_assoc_constant_differs.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I where .(I.X) = I where .(I.Y) = I where .(I.X) = .(I.Y) and .(I.Z) = {}` into type implementing `I where .(I.X) = I where .(I.Y) = I where .(I.X) = .(I.Y)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_nested_facet_type_in_assoc_constant_differs.carbon:[[@LINE-21]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I where .X = (I where .Y = (I where .X = .Y))) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- // --- fail_nested_facet_type_from_constant.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- let Y:! type;
- }
- fn F(T:! I where .X = (I where .Y = (I where .X = .Y, ))) {}
- // References to named constants in a facet type don't work at all. If they did,
- // then when the `Constant` facet type is put into the RHS of a rewrite
- // constraint, its references to `.Self` must be modified to not refer to the
- // top level `.Self` which is `T`. If done correctly, they will match the
- // `.Self` references in the same position in the parameter of `F`. If not, the
- // `.X` within becomes self-referential and makes a cycle.
- fn G1() {
- // CHECK:STDERR: fail_nested_facet_type_from_constant.carbon:[[@LINE+4]]:7: error: semantics TODO: `local `let :!` bindings are currently unsupported` [SemanticsTodo]
- // CHECK:STDERR: let Constant:! type = I where .X = .Y;
- // CHECK:STDERR: ^~~~~~~~~~~~~~~
- // CHECK:STDERR:
- let Constant:! type = I where .X = .Y;
- fn G(T:! I where .X = (I where .Y = (Constant, ))) {
- F(T);
- }
- }
- fn G2() {
- let Constant:! type = (I where .X = .Y, );
- fn G(T:! I where .X = (I where .Y = Constant)) {
- F(T);
- }
- }
- fn G3() {
- let Constant:! type = I where .Y = (I where .X = .Y, );
- fn G(T:! I where .X = Constant) {
- F(T);
- }
- }
- fn G4() {
- let Constant2:! type = (I where .X = .Y, );
- let Constant:! type = Constant2;
- fn G(T:! I where .X = (I where .Y = Constant)) {
- F(T);
- }
- }
- fn G5() {
- let Constant2:! type = I where .X = .Y;
- let Constant:! type = (Constant2, );
- fn G(T:! I where .X = (I where .Y = Constant)) {
- F(T);
- }
- }
- fn G6() {
- let Constant2:! type = (I where .X = .Y, );
- let Constant:! type = I where .Y = Constant2;
- fn G(T:! I where .X = Constant) {
- F(T);
- }
- }
- // --- fail_nested_facet_type_from_constant_differs.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- let Y:! type;
- }
- fn F(T:! I where .X = (I where .Y = (I where .X = .Y, ))) {}
- fn G1() {
- // CHECK:STDERR: fail_nested_facet_type_from_constant_differs.carbon:[[@LINE+4]]:7: error: semantics TODO: `local `let :!` bindings are currently unsupported` [SemanticsTodo]
- // CHECK:STDERR: let Constant:! type = I where .X = () and .Y = ();
- // CHECK:STDERR: ^~~~~~~~~~~~~~~
- // CHECK:STDERR:
- let Constant:! type = I where .X = () and .Y = ();
- fn G(T:! I where .X = (I where .Y = (Constant, ))) {
- F(T);
- }
- }
- // --- rewrite_requires_subst_in_nested_access_of_self.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let I1:! type;
- let I2:! type;
- }
- interface J {
- let J1:! I;
- }
- interface K {
- let K1:! J;
- }
- fn F(T:! I & J & K where .K1 = .Self and .J1 = .Self and .I1 = (.K1.J1).I2) {}
- fn G(T:! I & J & K where .K1 = .Self and .J1 = .Self and .I1 = .I2) {
- F(T);
- }
- // --- fail_rewrite_requires_subst_in_nested_access_of_self_wrong_type.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let I1:! type;
- let I2:! type;
- }
- interface J {
- let J1:! I;
- }
- interface K {
- let K1:! J;
- }
- fn F(T:! I & J & K where .K1 = .Self and .J1 = .Self and .I1 = (.K1.J1).I2) {}
- // F's requirement I1 = I2 is not met, as I1 = () and I2 = {}
- fn G(T:! I & J & K where .K1 = .Self and .J1 = .Self and .I1 = () and .I2 = {}) {
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_self_wrong_type.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I & J & K where .(K.K1) = .Self as J and .(J.J1) = .Self as I and .(I.I1) = () and .(I.I2) = {}` into type implementing `I & J & K where .(K.K1) = .Self as J and .(J.J1) = .Self as I and .(I.I1) = .(I.I2)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_self_wrong_type.carbon:[[@LINE-7]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I & J & K where .K1 = .Self and .J1 = .Self and .I1 = (.K1.J1).I2) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- // F's requirement I1 = I2 is not met, as I1 = {} and I2 is unspecified
- fn G2(T:! I & J & K where .K1 = .Self and .J1 = .Self and .I1 = {}) {
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_self_wrong_type.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I & J & K where .(K.K1) = .Self as J and .(J.J1) = .Self as I and .(I.I1) = {}` into type implementing `I & J & K where .(K.K1) = .Self as J and .(J.J1) = .Self as I and .(I.I1) = .(I.I2)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_self_wrong_type.carbon:[[@LINE-19]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I & J & K where .K1 = .Self and .J1 = .Self and .I1 = (.K1.J1).I2) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- // F's requirement I1 = I2 is not met, as I2 = {} and I1 is unspecified
- fn G3(T:! I & J & K where .K1 = .Self and .J1 = .Self and .I2 = {}) {
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_self_wrong_type.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I & J & K where .(K.K1) = .Self as J and .(J.J1) = .Self as I and .(I.I2) = {}` into type implementing `I & J & K where .(K.K1) = .Self as J and .(J.J1) = .Self as I and .(I.I1) = .(I.I2)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_self_wrong_type.carbon:[[@LINE-31]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I & J & K where .K1 = .Self and .J1 = .Self and .I1 = (.K1.J1).I2) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- // --- fail_todo_rewrite_requires_subst_in_nested_access_of_other.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let I1:! type;
- }
- interface J {
- let J1:! I;
- let J2:! type;
- }
- interface K {
- let K1:! J;
- }
- // .K1.J1 is an ImplWitnessAccess into Self. The Self witness will be subst'd in
- // for `U` and it will eval to the ImplWitnessAccess inside of `U.I1`. Then that
- // will need to be subst'd to find the value of I1 in U's witness.
- fn F(U:! I, T:! J & K where .J2 = (.K1.J1).I1) {}
- fn G(U:! I where .I1 = (), T:! J & K where .K1 = .Self and .J1 = U and .J2 = ()) {
- // CHECK:STDERR: fail_todo_rewrite_requires_subst_in_nested_access_of_other.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `J & K where .(J.J2) = () and .(K.K1) = .Self as J and .(J.J1) = U as I` into type implementing `J & K where .(J.J2) = .(K.K1).(J.J1).(I.I1)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(U, T);
- // CHECK:STDERR: ^~~~~~~
- // CHECK:STDERR: fail_todo_rewrite_requires_subst_in_nested_access_of_other.carbon:[[@LINE-6]]:13: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(U:! I, T:! J & K where .J2 = (.K1.J1).I1) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(U, T);
- }
- // --- fail_rewrite_requires_subst_in_nested_access_of_other_wrong_type.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let I1:! type;
- }
- interface J {
- let J1:! I;
- let J2:! type;
- }
- interface K {
- let K1:! J;
- }
- fn F(U:! I, T:! J & K where .J2 = (.K1.J1).I1) {}
- // F's requirement J2 = I1 is not met as J2 = () and I1 = {}
- fn G(U:! I where .I1 = {}, T:! J & K where .K1 = .Self and .J1 = U and .J2 = ()) {
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_wrong_type.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `J & K where .(J.J2) = () and .(K.K1) = .Self as J and .(J.J1) = U as I` into type implementing `J & K where .(J.J2) = .(K.K1).(J.J1).(I.I1)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(U, T);
- // CHECK:STDERR: ^~~~~~~
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_wrong_type.carbon:[[@LINE-7]]:13: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(U:! I, T:! J & K where .J2 = (.K1.J1).I1) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(U, T);
- }
- // F's requirement J2 = I1 is not met as J2 = () and I1 is unspecified
- fn G2(U:! I, T:! J & K where .K1 = .Self and .J1 = U and .J2 = ()) {
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_wrong_type.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `J & K where .(J.J2) = () and .(K.K1) = .Self as J and .(J.J1) = U` into type implementing `J & K where .(J.J2) = .(K.K1).(J.J1).(I.I1)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(U, T);
- // CHECK:STDERR: ^~~~~~~
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_wrong_type.carbon:[[@LINE-19]]:13: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(U:! I, T:! J & K where .J2 = (.K1.J1).I1) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(U, T);
- }
- // F's requirement J2 = I1 is not met as I1 = {} and J2 is unspecified
- fn G3(U:! I where .I1 = {}, T:! J & K where .K1 = .Self and .J1 = U) {
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_wrong_type.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `J & K where .(K.K1) = .Self as J and .(J.J1) = U as I` into type implementing `J & K where .(J.J2) = .(K.K1).(J.J1).(I.I1)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(U, T);
- // CHECK:STDERR: ^~~~~~~
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_wrong_type.carbon:[[@LINE-31]]:13: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(U:! I, T:! J & K where .J2 = (.K1.J1).I1) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(U, T);
- }
- // --- rewrite_requires_subst_in_nested_access_of_other_with_two_witnesses.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let I1:! type;
- }
- interface J {
- let J1:! type;
- }
- interface K {
- let K1:! J & I;
- let K2:! type;
- let K3:! type;
- }
- fn F(U:! I & J, T:! K where .K2 = .K1.I1 and .K3 = .K1.J1) {}
- fn G(U:! I & J where .I1 = () and .J1 = {}, T:! K where .K1 = U and .K2 = () and .K3 = {}) {
- F(U, T);
- }
- // --- fail_rewrite_requires_subst_in_nested_access_of_other_with_two_witnesses_wrong_type.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let I1:! type;
- }
- interface J {
- let J1:! type;
- }
- interface K {
- let K1:! J & I;
- let K2:! type;
- let K3:! type;
- }
- fn F(U:! I & J, T:! K where .K2 = .K1.I1 and .K3 = .K1.J1) {}
- // K2 = I1 fails since K2 = {} and I1 = ()
- fn G(U:! I & J where .I1 = () and .J1 = {}, T:! K where .K1 = U and .K2 = {} and .K3 = {}) {
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_with_two_witnesses_wrong_type.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `K where .(K.K2) = {} and .(K.K1) = U as I & J and .(K.K3) = {}` into type implementing `K where .(K.K2) = .(K.K1).(I.I1) and .(K.K3) = .(K.K1).(J.J1)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(U, T);
- // CHECK:STDERR: ^~~~~~~
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_with_two_witnesses_wrong_type.carbon:[[@LINE-7]]:17: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(U:! I & J, T:! K where .K2 = .K1.I1 and .K3 = .K1.J1) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(U, T);
- }
- // K2 = I1 fails since I1 = () and K2 is unspecified.
- fn G2(U:! I & J where .I1 = () and .J1 = {}, T:! K where .K1 = U and .K3 = {}) {
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_with_two_witnesses_wrong_type.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `K where .(K.K1) = U as I & J and .(K.K3) = {}` into type implementing `K where .(K.K2) = .(K.K1).(I.I1) and .(K.K3) = .(K.K1).(J.J1)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(U, T);
- // CHECK:STDERR: ^~~~~~~
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_with_two_witnesses_wrong_type.carbon:[[@LINE-19]]:17: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(U:! I & J, T:! K where .K2 = .K1.I1 and .K3 = .K1.J1) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(U, T);
- }
- // K2 = I1 fails since K2 = () and I1 is unspecified.
- fn G3(U:! I & J where .J1 = {}, T:! K where .K1 = U and .K2 = () and .K3 = {}) {
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_with_two_witnesses_wrong_type.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `K where .(K.K2) = () and .(K.K1) = U as I & J and .(K.K3) = {}` into type implementing `K where .(K.K2) = .(K.K1).(I.I1) and .(K.K3) = .(K.K1).(J.J1)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(U, T);
- // CHECK:STDERR: ^~~~~~~
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_with_two_witnesses_wrong_type.carbon:[[@LINE-31]]:17: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(U:! I & J, T:! K where .K2 = .K1.I1 and .K3 = .K1.J1) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(U, T);
- }
- // K3 = J1 fails since J1 = {} and K3 is unspecified.
- fn G4(U:! I & J where .I1 = () and .J1 = {}, T:! K where .K1 = U and .K2 = ()) {
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_with_two_witnesses_wrong_type.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `K where .(K.K2) = () and .(K.K1) = U as I & J` into type implementing `K where .(K.K2) = .(K.K1).(I.I1) and .(K.K3) = .(K.K1).(J.J1)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(U, T);
- // CHECK:STDERR: ^~~~~~~
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_with_two_witnesses_wrong_type.carbon:[[@LINE-43]]:17: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(U:! I & J, T:! K where .K2 = .K1.I1 and .K3 = .K1.J1) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(U, T);
- }
- // K3 = J1 fails since K3 = {} and J1 is unspecified.
- fn G5(U:! I & J where .I1 = (), T:! K where .K1 = U and .K2 = () and .K3 = {}) {
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_with_two_witnesses_wrong_type.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `K where .(K.K2) = () and .(K.K1) = U as I & J and .(K.K3) = {}` into type implementing `K where .(K.K2) = .(K.K1).(I.I1) and .(K.K3) = .(K.K1).(J.J1)` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(U, T);
- // CHECK:STDERR: ^~~~~~~
- // CHECK:STDERR: fail_rewrite_requires_subst_in_nested_access_of_other_with_two_witnesses_wrong_type.carbon:[[@LINE-55]]:17: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(U:! I & J, T:! K where .K2 = .K1.I1 and .K3 = .K1.J1) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(U, T);
- }
- // --- fail_target_rewrites_dont_apply_to_source.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let I1:! type;
- let I2:! type;
- let I3:! type;
- let I4:! type;
- }
- fn F(T:! I where .I1 = () and .I2 = ()) {}
- fn G(T:! I where .I1 = .I2) {
- // CHECK:STDERR: fail_target_rewrites_dont_apply_to_source.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `I where .(I.I1) = .(I.I2)` into type implementing `I where .(I.I1) = () and .(I.I2) = ()` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_target_rewrites_dont_apply_to_source.carbon:[[@LINE-6]]:6: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(T:! I where .I1 = () and .I2 = ()) {}
- // CHECK:STDERR: ^
- // CHECK:STDERR:
- F(T);
- }
- // --- nested_facet_type_used_as_root_facet_type.carbon
- library "[[@TEST_NAME]]";
- interface I {
- let X:! type;
- let Y:! type;
- }
- fn F(T:! I where .X = (I where .Y = {}), U:! T.X) {}
- fn G(T:! I where .X = (I where .Y = {}), U:! I where .Y = {}) {
- F(T, U);
- }
|