summaryrefslogtreecommitdiffstats
path: root/vendor/bitflags/tests/compile-pass/redefinition/stringify.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/bitflags/tests/compile-pass/redefinition/stringify.rs')
-rw-r--r--vendor/bitflags/tests/compile-pass/redefinition/stringify.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/bitflags/tests/compile-pass/redefinition/stringify.rs b/vendor/bitflags/tests/compile-pass/redefinition/stringify.rs
new file mode 100644
index 000000000..b04f2f6a4
--- /dev/null
+++ b/vendor/bitflags/tests/compile-pass/redefinition/stringify.rs
@@ -0,0 +1,19 @@
+use bitflags::bitflags;
+
+// Checks for possible errors caused by overriding names used by `bitflags!` internally.
+
+#[allow(unused_macros)]
+macro_rules! stringify {
+ ($($t:tt)*) => { "..." };
+}
+
+bitflags! {
+ struct Test: u8 {
+ const A = 1;
+ }
+}
+
+fn main() {
+ // Just make sure we don't call the redefined `stringify` macro
+ assert_eq!(format!("{:?}", Test::A), "A");
+}