about summary refs log tree commit diff
path: root/tests/ui/stability-attribute/generics-default-stability-where.rs
diff options
context:
space:
mode:
authorOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2023-10-31 13:45:26 +0000
committerOli Scherer <git-spam-no-reply9815368754983@oli-obk.de>2024-01-09 21:08:16 +0000
commit0978f6e010e0eb3dddfa2a1a374ae5567e1f7f4c (patch)
tree088de30be238d47fcc5889f5e5eae9298366e92b /tests/ui/stability-attribute/generics-default-stability-where.rs
parentbe00c5a9b89161b7f45ba80340f709e8e41122f9 (diff)
downloadrust-0978f6e010e0eb3dddfa2a1a374ae5567e1f7f4c.tar.gz
rust-0978f6e010e0eb3dddfa2a1a374ae5567e1f7f4c.zip
Avoid silencing relevant follow-up errors
Diffstat (limited to 'tests/ui/stability-attribute/generics-default-stability-where.rs')
-rw-r--r--tests/ui/stability-attribute/generics-default-stability-where.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/ui/stability-attribute/generics-default-stability-where.rs b/tests/ui/stability-attribute/generics-default-stability-where.rs
index 4afbca26264..142de12e152 100644
--- a/tests/ui/stability-attribute/generics-default-stability-where.rs
+++ b/tests/ui/stability-attribute/generics-default-stability-where.rs
@@ -5,6 +5,7 @@ extern crate unstable_generic_param;
 use unstable_generic_param::*;
 
 impl<T> Trait3<usize> for T where T: Trait2<usize> { //~ ERROR use of unstable library feature 'unstable_default'
+//~^ ERROR `T` must be used as the type parameter for some local type
     fn foo() -> usize { T::foo() }
 }