about summary refs log tree commit diff
path: root/src/test/ui/rfc-2632-const-trait-impl/stability.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/rfc-2632-const-trait-impl/stability.stderr')
-rw-r--r--src/test/ui/rfc-2632-const-trait-impl/stability.stderr24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/test/ui/rfc-2632-const-trait-impl/stability.stderr b/src/test/ui/rfc-2632-const-trait-impl/stability.stderr
deleted file mode 100644
index fa3d85a3e6a..00000000000
--- a/src/test/ui/rfc-2632-const-trait-impl/stability.stderr
+++ /dev/null
@@ -1,24 +0,0 @@
-error: `<Int as Add>::add` is not yet stable as a const fn
-  --> $DIR/stability.rs:32:5
-   |
-LL |     Int(0) + Int(0);
-   |     ^^^^^^^^^^^^^^^
-   |
-   = help: const-stable functions can only call other const-stable functions
-
-error: trait implementations cannot be const stable yet
-  --> $DIR/stability.rs:10:1
-   |
-LL | / impl const std::ops::Sub for Int {
-LL | |
-LL | |     type Output = Self;
-LL | |
-...  |
-LL | |     }
-LL | | }
-   | |_^
-   |
-   = note: see issue #67792 <https://github.com/rust-lang/rust/issues/67792> for more information
-
-error: aborting due to 2 previous errors
-