summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-33418.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/issues/issue-33418.rs')
-rw-r--r--tests/ui/parser/issues/issue-33418.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/ui/parser/issues/issue-33418.rs b/tests/ui/parser/issues/issue-33418.rs
index 9934284ab..4ebd5871e 100644
--- a/tests/ui/parser/issues/issue-33418.rs
+++ b/tests/ui/parser/issues/issue-33418.rs
@@ -1,5 +1,3 @@
-// run-rustfix
-
trait Tr: !SuperA {}
//~^ ERROR negative bounds are not supported
trait Tr2: SuperA + !SuperB {}
@@ -7,10 +5,12 @@ trait Tr2: SuperA + !SuperB {}
trait Tr3: !SuperA + SuperB {}
//~^ ERROR negative bounds are not supported
trait Tr4: !SuperA + SuperB
- + !SuperC + SuperD {}
+//~^ ERROR negative bounds are not supported
++ !SuperC + SuperD {}
//~^ ERROR negative bounds are not supported
trait Tr5: !SuperA
- + !SuperB {}
+//~^ ERROR negative bounds are not supported
++ !SuperB {}
//~^ ERROR negative bounds are not supported
trait SuperA {}