diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:18:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:18:58 +0000 |
commit | a4b7ed7a42c716ab9f05e351f003d589124fd55d (patch) | |
tree | b620cd3f223850b28716e474e80c58059dca5dd4 /tests/ui/specialization/specialization-overlap.rs | |
parent | Adding upstream version 1.67.1+dfsg1. (diff) | |
download | rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.tar.xz rustc-a4b7ed7a42c716ab9f05e351f003d589124fd55d.zip |
Adding upstream version 1.68.2+dfsg1.upstream/1.68.2+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/specialization/specialization-overlap.rs')
-rw-r--r-- | tests/ui/specialization/specialization-overlap.rs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/ui/specialization/specialization-overlap.rs b/tests/ui/specialization/specialization-overlap.rs new file mode 100644 index 000000000..6bee22ceb --- /dev/null +++ b/tests/ui/specialization/specialization-overlap.rs @@ -0,0 +1,19 @@ +#![feature(specialization)] //~ WARN the feature `specialization` is incomplete + +trait Foo { fn foo() {} } +impl<T: Clone> Foo for T {} +impl<T> Foo for Vec<T> {} //~ ERROR E0119 + +trait Bar { fn bar() {} } +impl<T> Bar for (T, u8) {} +impl<T> Bar for (u8, T) {} //~ ERROR E0119 + +trait Baz<U> { fn baz() {} } +impl<T> Baz<T> for u8 {} +impl<T> Baz<u8> for T {} //~ ERROR E0119 + +trait Qux { fn qux() {} } +impl<T: Clone> Qux for T {} +impl<T: Eq> Qux for T {} //~ ERROR E0119 + +fn main() {} |