summary refs log tree commit diff
path: root/src/test/ui/error-codes
diff options
context:
space:
mode:
authorVadim Petrochenkov <vadim.petrochenkov@gmail.com>2019-03-11 23:30:10 +0300
committerVadim Petrochenkov <vadim.petrochenkov@gmail.com>2019-03-11 23:30:10 +0300
commit07f99b9fec4ba0c549596e8e7d99553e86763d35 (patch)
tree180ec75fbbbd21cc0352a9f0a0ae7c3e1ed306c4 /src/test/ui/error-codes
parentc1cfacfb13f2bdf6bd94e81164c90b2449ec60a1 (diff)
downloadrust-07f99b9fec4ba0c549596e8e7d99553e86763d35.tar.gz
rust-07f99b9fec4ba0c549596e8e7d99553e86763d35.zip
Update tests that don't run on my platform
Diffstat (limited to 'src/test/ui/error-codes')
-rw-r--r--src/test/ui/error-codes/E0161.stderr16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/test/ui/error-codes/E0161.stderr b/src/test/ui/error-codes/E0161.stderr
deleted file mode 100644
index 0135e495c16..00000000000
--- a/src/test/ui/error-codes/E0161.stderr
+++ /dev/null
@@ -1,16 +0,0 @@
-error[E0161]: cannot move a value of type str: the size of str cannot be statically determined
-  --> $DIR/E0161.rs:14:28
-   |
-LL |     let _x: Box<str> = box *"hello"; //~ ERROR E0161
-   |                            ^^^^^^^^
-
-error[E0507]: cannot move out of borrowed content
-  --> $DIR/E0161.rs:14:28
-   |
-LL |     let _x: Box<str> = box *"hello"; //~ ERROR E0161
-   |                            ^^^^^^^^ cannot move out of borrowed content
-
-error: aborting due to 2 previous errors
-
-Some errors occurred: E0161, E0507.
-For more information about an error, try `rustc --explain E0161`.