15 lines
242 B
Rust
15 lines
242 B
Rust
![]() |
// Unnamed arguments in trait functions can be passed through proc macros on 2015 edition.
|
||
|
|
||
|
// check-pass
|
||
|
// aux-build:test-macros.rs
|
||
|
|
||
|
#[macro_use]
|
||
|
extern crate test_macros;
|
||
|
|
||
|
trait Tr {
|
||
|
#[identity_attr]
|
||
|
fn method(u8);
|
||
|
}
|
||
|
|
||
|
fn main() {}
|