summaryrefslogtreecommitdiffstats
path: root/src/test/ui/borrowck/borrowck-univariant-enum.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/borrowck/borrowck-univariant-enum.rs')
-rw-r--r--src/test/ui/borrowck/borrowck-univariant-enum.rs25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/test/ui/borrowck/borrowck-univariant-enum.rs b/src/test/ui/borrowck/borrowck-univariant-enum.rs
deleted file mode 100644
index c78e94752..000000000
--- a/src/test/ui/borrowck/borrowck-univariant-enum.rs
+++ /dev/null
@@ -1,25 +0,0 @@
-// run-pass
-#![allow(non_camel_case_types)]
-
-use std::cell::Cell;
-
-#[derive(Copy, Clone)]
-enum newtype {
- newvar(isize)
-}
-
-pub fn main() {
-
- // Test that borrowck treats enums with a single variant
- // specially.
-
- let x = &Cell::new(5);
- let y = &Cell::new(newtype::newvar(3));
- let z = match y.get() {
- newtype::newvar(b) => {
- x.set(x.get() + 1);
- x.get() * b
- }
- };
- assert_eq!(z, 18);
-}