summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/issue-67690-type-alias-bound-diagnostic-crash.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/type/issue-67690-type-alias-bound-diagnostic-crash.stderr')
-rw-r--r--src/test/ui/type/issue-67690-type-alias-bound-diagnostic-crash.stderr15
1 files changed, 0 insertions, 15 deletions
diff --git a/src/test/ui/type/issue-67690-type-alias-bound-diagnostic-crash.stderr b/src/test/ui/type/issue-67690-type-alias-bound-diagnostic-crash.stderr
deleted file mode 100644
index 125ffbbb4..000000000
--- a/src/test/ui/type/issue-67690-type-alias-bound-diagnostic-crash.stderr
+++ /dev/null
@@ -1,15 +0,0 @@
-warning: bounds on generic parameters are not enforced in type aliases
- --> $DIR/issue-67690-type-alias-bound-diagnostic-crash.rs:5:15
- |
-LL | pub type T<P: Send + Send + Send> = P;
- | ^^^^ ^^^^ ^^^^
- |
- = note: `#[warn(type_alias_bounds)]` on by default
-help: the bound will not be checked when the type alias is used, and should be removed
- |
-LL - pub type T<P: Send + Send + Send> = P;
-LL + pub type T<P> = P;
- |
-
-warning: 1 warning emitted
-