| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192 |
- // 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_impl_constraints.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/facet/validate_impl_constraints.carbon
- // --- self_impls_modifies_assoc_constant.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- fn F(unused T:! I where .X = ()) {}
- fn G(T:! I where .Self impls (I where .X = ())) {
- F(T);
- }
- // --- fail_self_impls_modifies_assoc_constant_type_differs.carbon
- library "[[@TEST_NAME]]";
- interface I { let X:! type; }
- fn F(unused T:! I where .X = ()) {}
- fn G(T:! I where .Self impls (I where .X = {})) {
- // CHECK:STDERR: fail_self_impls_modifies_assoc_constant_type_differs.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_self_impls_modifies_assoc_constant_type_differs.carbon:[[@LINE-6]]:13: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: fn F(unused T:! I where .X = ()) {}
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~
- // CHECK:STDERR:
- F(T);
- }
- // --- fail_todo_where_impls_tests_associated_constant_of_generic_type.carbon
- library "[[@TEST_NAME]]";
- class C(U:! type) {}
- // C(U) impls M if U impls L.
- interface L {}
- interface M { let M0:! type; }
- impl forall [U:! L] C(U) as M where .M0 = {} {}
- // U requires that C(.Self) impls M.
- // - C(.Self) impls M can be rewritten as C(U) impls M.
- // - C(U) impls M if U impls L => Requires U impls L.
- fn F(unused U:! type where C(.Self) impls (M where .M0 = {})) {}
- fn G(T:! L) {
- // CHECK:STDERR: fail_todo_where_impls_tests_associated_constant_of_generic_type.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `L` into type implementing `type where C(.Self) impls M and .(M.M0) = {}` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_todo_where_impls_tests_associated_constant_of_generic_type.carbon:[[@LINE-6]]:1: note: while deducing parameters of generic declared here [DeductionGenericHere]
- // CHECK:STDERR: fn F(unused U:! type where C(.Self) impls (M where .M0 = {})) {}
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // CHECK:STDERR:
- F(T);
- }
- // --- fail_where_impls_tests_associated_constant_of_generic_type_type_differs.carbon
- library "[[@TEST_NAME]]";
- class C(U:! type) {}
- // C(U) impls M if U impls L.
- interface L {}
- interface M { let M0:! type; }
- impl forall [U:! L] C(U) as M where .M0 = () {}
- // U requires that C(.Self) impls M.
- // - C(.Self) impls M can be rewritten as C(U) impls M.
- // - C(U) impls M if U impls L => Requires U impls L.
- fn F(unused U:! type where C(.Self) impls (M where .M0 = {})) {}
- fn G(T:! L) {
- // CHECK:STDERR: fail_where_impls_tests_associated_constant_of_generic_type_type_differs.carbon:[[@LINE+7]]:3: error: cannot convert type `T` that implements `L` into type implementing `type where C(.Self) impls M and .(M.M0) = {}` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: F(T);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_where_impls_tests_associated_constant_of_generic_type_type_differs.carbon:[[@LINE-6]]:1: note: while deducing parameters of generic declared here [DeductionGenericHere]
- // CHECK:STDERR: fn F(unused U:! type where C(.Self) impls (M where .M0 = {})) {}
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // CHECK:STDERR:
- F(T);
- }
- // --- self_in_interface_generic_param_unconstrained.carbon
- library "[[@TEST_NAME]]";
- interface Z {}
- interface I(T:! type) {}
- fn F(unused T:! I(.Self) where .Self impls Z) {}
- fn G(T:! Z & I(.Self)) {
- F(T);
- }
- // --- fail_todo_self_in_interface_generic_param_constrained.carbon
- library "[[@TEST_NAME]]";
- interface Z {}
- interface I(T:! Z) {}
- // Implied constraint: .Self impls Z, which is satisfied and checked at the end
- // of the fn signature.
- // CHECK:STDERR: fail_todo_self_in_interface_generic_param_constrained.carbon:[[@LINE+7]]:17: error: cannot convert type `.Self` that implements `type` into type implementing `Z` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: fn F(unused T:! I(.Self) where .Self impls Z) {}
- // CHECK:STDERR: ^~~~~~~~
- // CHECK:STDERR: fail_todo_self_in_interface_generic_param_constrained.carbon:[[@LINE-7]]:13: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: interface I(T:! Z) {}
- // CHECK:STDERR: ^~~~~
- // CHECK:STDERR:
- fn F(unused T:! I(.Self) where .Self impls Z) {}
- // CHECK:STDERR: fail_todo_self_in_interface_generic_param_constrained.carbon:[[@LINE+7]]:14: error: cannot convert type `.Self` that implements `type` into type implementing `Z` [ConversionFailureFacetToFacet]
- // CHECK:STDERR: fn G(T:! Z & I(.Self)) {
- // CHECK:STDERR: ^~~~~~~~
- // CHECK:STDERR: fail_todo_self_in_interface_generic_param_constrained.carbon:[[@LINE-16]]:13: note: initializing generic parameter `T` declared here [InitializingGenericParam]
- // CHECK:STDERR: interface I(T:! Z) {}
- // CHECK:STDERR: ^~~~~
- // CHECK:STDERR:
- fn G(T:! Z & I(.Self)) {
- F(T);
- }
- // --- fail_todo_where_period_self_rhs_sees_lhs.carbon
- library "[[@TEST_NAME]]";
- interface Z {}
- interface Y {}
- interface X(T:! Z & Y) {}
- constraint N {
- require impls Y;
- }
- // The RHS of `where` can see the extend constraints on the LHS of `where`.
- fn F(_:! Z & N where .Self impls X(.Self)) {}
- fn G() {
- class C;
- impl C as Z {}
- impl C as Y {}
- impl C as X(C) {}
- // CHECK:STDERR: fail_todo_where_period_self_rhs_sees_lhs.carbon:[[@LINE+7]]:3: error: cannot convert type `C` into type implementing `Z & N where .Self impls X(.Self as Z & Y)` [ConversionFailureTypeToFacet]
- // CHECK:STDERR: F(C);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_todo_where_period_self_rhs_sees_lhs.carbon:[[@LINE-10]]:1: note: while deducing parameters of generic declared here [DeductionGenericHere]
- // CHECK:STDERR: fn F(_:! Z & N where .Self impls X(.Self)) {}
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // CHECK:STDERR:
- F(C);
- }
- // --- fail_todo_where_type_rhs_sees_lhs.carbon
- library "[[@TEST_NAME]]";
- interface Z {}
- interface Y {}
- interface X(T:! Z & Y) {}
- constraint N {
- require impls Y;
- }
- class R(T:! Z & Y);
- // The RHS of `where` can see the extend constraints on the LHS of `where`.
- fn F(_:! Z & N where R(.Self) impls X(.Self)) {}
- fn G() {
- class C;
- impl C as Z {}
- impl C as Y {}
- impl R(C) as X(C) {}
- // CHECK:STDERR: fail_todo_where_type_rhs_sees_lhs.carbon:[[@LINE+7]]:3: error: cannot convert type `C` into type implementing `Z & N where R(.Self as Z & Y) impls X(.Self as Z & Y)` [ConversionFailureTypeToFacet]
- // CHECK:STDERR: F(C);
- // CHECK:STDERR: ^~~~
- // CHECK:STDERR: fail_todo_where_type_rhs_sees_lhs.carbon:[[@LINE-10]]:1: note: while deducing parameters of generic declared here [DeductionGenericHere]
- // CHECK:STDERR: fn F(_:! Z & N where R(.Self) impls X(.Self)) {}
- // CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- // CHECK:STDERR:
- F(C);
- }
|