about summary refs log tree commit diff
path: root/src/test/ui/paren-span.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/paren-span.rs')
-rw-r--r--src/test/ui/paren-span.rs21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/paren-span.rs b/src/test/ui/paren-span.rs
deleted file mode 100644
index c8cb63d5190..00000000000
--- a/src/test/ui/paren-span.rs
+++ /dev/null
@@ -1,21 +0,0 @@
-// Be smart about span of parenthesized expression in macro.
-
-macro_rules! paren {
-    ($e:expr) => (($e))
-    //            ^^^^ do not highlight here
-}
-
-mod m {
-    pub struct S {
-        x: i32
-    }
-    pub fn make() -> S {
-        S { x: 0 }
-    }
-}
-
-fn main() {
-    let s = m::make();
-    paren!(s.x); //~ ERROR field `x` of struct `S` is private
-    //     ^^^ highlight here
-}