diff options
| author | León Orell Valerian Liehr <me@fmease.dev> | 2023-07-10 03:10:03 +0200 |
|---|---|---|
| committer | León Orell Valerian Liehr <me@fmease.dev> | 2023-07-28 22:23:20 +0200 |
| commit | 6636916b666d067277ee31c1eab1970912b6eb8a (patch) | |
| tree | a92fb7e60577b229e8761669d807a71de46ce3f2 /tests/ui/generic-const-items/duplicate-where-clause.rs | |
| parent | a011dd9dacef28a53c868fa537c45fe81415c733 (diff) | |
| download | rust-6636916b666d067277ee31c1eab1970912b6eb8a.tar.gz rust-6636916b666d067277ee31c1eab1970912b6eb8a.zip | |
Add UI tests for generic const items
Diffstat (limited to 'tests/ui/generic-const-items/duplicate-where-clause.rs')
| -rw-r--r-- | tests/ui/generic-const-items/duplicate-where-clause.rs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tests/ui/generic-const-items/duplicate-where-clause.rs b/tests/ui/generic-const-items/duplicate-where-clause.rs new file mode 100644 index 00000000000..68da4073fc1 --- /dev/null +++ b/tests/ui/generic-const-items/duplicate-where-clause.rs @@ -0,0 +1,27 @@ +#![feature(generic_const_items)] +#![allow(incomplete_features)] + +trait Tr<P> { + const K: () + where + P: Copy + where + P: Eq; + //~^ ERROR cannot define duplicate `where` clauses on an item +} + +// Test that we error on the first where-clause but also that we don't suggest to swap it with the +// body as it would conflict with the second where-clause. +// FIXME(generic_const_items): We should provide a structured sugg to merge the 1st into the 2nd WC. + +impl<P> Tr<P> for () { + const K: () + where + P: Eq + = () + where + P: Copy; + //~^^^^^ ERROR where clauses are not allowed before const item bodies +} + +fn main() {} |
