summaryrefslogtreecommitdiffstats
path: root/tests/ui/rfcs/rfc-2632-const-trait-impl/effects/minicore.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/rfcs/rfc-2632-const-trait-impl/effects/minicore.stderr')
-rw-r--r--tests/ui/rfcs/rfc-2632-const-trait-impl/effects/minicore.stderr32
1 files changed, 0 insertions, 32 deletions
diff --git a/tests/ui/rfcs/rfc-2632-const-trait-impl/effects/minicore.stderr b/tests/ui/rfcs/rfc-2632-const-trait-impl/effects/minicore.stderr
deleted file mode 100644
index 024293742..000000000
--- a/tests/ui/rfcs/rfc-2632-const-trait-impl/effects/minicore.stderr
+++ /dev/null
@@ -1,32 +0,0 @@
-error[E0369]: cannot add `i32` to `i32`
- --> $DIR/minicore.rs:33:20
- |
-LL | let x = 42_i32 + 43_i32;
- | ------ ^ ------ i32
- | |
- | i32
-
-error[E0369]: cannot add `i32` to `i32`
- --> $DIR/minicore.rs:37:20
- |
-LL | let x = 42_i32 + 43_i32;
- | ------ ^ ------ i32
- | |
- | i32
-
-error[E0600]: cannot apply unary operator `!` to type `bool`
- --> $DIR/minicore.rs:343:9
- |
-LL | !self.eq(other)
- | ^^^^^^^^^^^^^^^ cannot apply unary operator `!`
-
-error[E0600]: cannot apply unary operator `!` to type `bool`
- --> $DIR/minicore.rs:365:9
- |
-LL | !self
- | ^^^^^ cannot apply unary operator `!`
-
-error: aborting due to 4 previous errors
-
-Some errors have detailed explanations: E0369, E0600.
-For more information about an error, try `rustc --explain E0369`.