about summary refs log tree commit diff
path: root/tests/ui/test-attrs/test-cant-be-shadowed.rs
blob: ff47b1de177c0497a3e0e7b1324f8460fd89ba3e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
//@ build-pass (FIXME(62277): could be check-pass?)
//@ aux-build:test_macro.rs
//@ compile-flags:--test

#[macro_use] extern crate test_macro;

#[test]
fn foo(){}

macro_rules! test { () => () }

#[test]
fn bar() {}