mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
16 lines
165 B
Rust
16 lines
165 B
Rust
// check-pass
|
|
#![allow(dead_code)]
|
|
|
|
macro_rules! m { () => { 0 } }
|
|
|
|
trait T {
|
|
const C: i32 = m!();
|
|
}
|
|
|
|
struct S;
|
|
impl S {
|
|
const C: i32 = m!();
|
|
}
|
|
|
|
fn main() {}
|