about summary refs log tree commit diff
path: root/src/test/parse-fail
diff options
context:
space:
mode:
authorest31 <MTest31@outlook.com>2015-12-29 14:19:08 +0100
committerest31 <MTest31@outlook.com>2015-12-30 16:23:50 +0100
commit94434f1f6c58e7872a7a80b8b71bc2cbcc0cf260 (patch)
treeab7c4c3fdea1ec3dd01c92dbbc39f48cb074b351 /src/test/parse-fail
parent1bbcceb9f6c21ad236eda0af1b2fa8928c3d32d6 (diff)
downloadrust-94434f1f6c58e7872a7a80b8b71bc2cbcc0cf260.tar.gz
rust-94434f1f6c58e7872a7a80b8b71bc2cbcc0cf260.zip
Move pub-{item,methd}-macro.rs to the parse-fail subdir as well
Diffstat (limited to 'src/test/parse-fail')
-rw-r--r--src/test/parse-fail/pub-item-macro.rs28
-rw-r--r--src/test/parse-fail/pub-method-macro.rs34
2 files changed, 62 insertions, 0 deletions
diff --git a/src/test/parse-fail/pub-item-macro.rs b/src/test/parse-fail/pub-item-macro.rs
new file mode 100644
index 00000000000..8809e9a257d
--- /dev/null
+++ b/src/test/parse-fail/pub-item-macro.rs
@@ -0,0 +1,28 @@
+// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// Issue #14660
+
+macro_rules! priv_x { () => {
+    static x: u32 = 0;
+}}
+
+macro_rules! pub_x { () => {
+    pub priv_x!(); //~ ERROR can't qualify macro invocation with `pub`
+    //~^ HELP try adjusting the macro to put `pub` inside the invocation
+}}
+
+mod foo {
+    pub_x!();
+}
+
+fn main() {
+    let y: u32 = foo::x;
+}
diff --git a/src/test/parse-fail/pub-method-macro.rs b/src/test/parse-fail/pub-method-macro.rs
new file mode 100644
index 00000000000..198fa5b9aca
--- /dev/null
+++ b/src/test/parse-fail/pub-method-macro.rs
@@ -0,0 +1,34 @@
+// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// Issue #18317
+
+mod bleh {
+    macro_rules! defn {
+        ($n:ident) => (
+            fn $n (&self) -> i32 {
+                println!("{}", stringify!($n));
+                1
+            }
+        )
+    }
+
+    #[derive(Copy, Clone)]
+    pub struct S;
+
+    impl S {
+        pub defn!(f); //~ ERROR can't qualify macro invocation with `pub`
+        //~^ HELP try adjusting the macro to put `pub` inside the invocation
+    }
+}
+
+fn main() {
+    bleh::S.f();
+}