| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361 |
- // 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() {
- let Constant:! type = I where .X = .Y;
- fn G(T:! I where .X = (I where .Y = (Constant, ))) {
- // CHECK:STDERR: fail_nested_facet_type_from_constant.carbon:[[@LINE+7]]:5: error: cannot convert type `T` that implements `I where .(I.X) = I where .(I.Y) = (Constant,)` 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_from_constant.carbon:[[@LINE-16]]: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);
- }
- }
- fn G2() {
- let Constant:! type = (I where .X = .Y, );
- fn G(T:! I where .X = (I where .Y = Constant)) {
- // CHECK:STDERR: fail_nested_facet_type_from_constant.carbon:[[@LINE+7]]:5: error: cannot convert type `T` that implements `I where .(I.X) = I where .(I.Y) = Constant` 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_from_constant.carbon:[[@LINE-31]]: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);
- }
- }
- fn G3() {
- let Constant:! type = I where .Y = (I where .X = .Y, );
- fn G(T:! I where .X = Constant) {
- // CHECK:STDERR: fail_nested_facet_type_from_constant.carbon:[[@LINE+7]]:5: error: cannot convert type `T` that implements `I where .(I.X) = Constant` 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_from_constant.carbon:[[@LINE-46]]: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);
- }
- }
- fn G4() {
- let Constant2:! type = (I where .X = .Y, );
- let Constant:! type = Constant2;
- fn G(T:! I where .X = (I where .Y = Constant)) {
- // CHECK:STDERR: fail_nested_facet_type_from_constant.carbon:[[@LINE+7]]:5: error: cannot convert type `T` that implements `I where .(I.X) = I where .(I.Y) = Constant` 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_from_constant.carbon:[[@LINE-62]]: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);
- }
- }
- fn G5() {
- let Constant2:! type = I where .X = .Y;
- let Constant:! type = (Constant2, );
- fn G(T:! I where .X = (I where .Y = Constant)) {
- // CHECK:STDERR: fail_nested_facet_type_from_constant.carbon:[[@LINE+7]]:5: error: cannot convert type `T` that implements `I where .(I.X) = I where .(I.Y) = Constant` 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_from_constant.carbon:[[@LINE-78]]: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);
- }
- }
- fn G6() {
- let Constant2:! type = (I where .X = .Y, );
- let Constant:! type = I where .Y = Constant2;
- fn G(T:! I where .X = Constant) {
- // CHECK:STDERR: fail_nested_facet_type_from_constant.carbon:[[@LINE+7]]:5: error: cannot convert type `T` that implements `I where .(I.X) = Constant` 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_from_constant.carbon:[[@LINE-94]]: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_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() {
- let Constant:! type = I where .X = () and .Y = ();
- fn G(T:! I where .X = (I where .Y = (Constant, ))) {
- // CHECK:STDERR: fail_nested_facet_type_from_constant_differs.carbon:[[@LINE+7]]:5: error: cannot convert type `T` that implements `I where .(I.X) = I where .(I.Y) = (Constant,)` 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_from_constant_differs.carbon:[[@LINE-9]]: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);
- }
- }
- // --- 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);
- }
|