mirror of
https://github.com/rust-lang/rust.git
synced 2026-06-01 22:18:23 +03:00
Add regression test for https://github.com/rust-lang/rust/issues/81555
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
// check-pass
|
||||
// aux-build:test-macros.rs
|
||||
#![feature(stmt_expr_attributes, proc_macro_hygiene)]
|
||||
|
||||
extern crate test_macros;
|
||||
|
||||
use test_macros::identity_attr;
|
||||
|
||||
#[identity_attr]
|
||||
fn main() {
|
||||
let _x;
|
||||
let y = ();
|
||||
#[identity_attr]
|
||||
_x = y;
|
||||
}
|
||||
Reference in New Issue
Block a user