mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
14 lines
142 B
Rust
14 lines
142 B
Rust
|
//@ known-bug: #131915
|
||
|
|
||
|
macro_rules! y {
|
||
|
( $($matcher:tt)*) => {
|
||
|
x
|
||
|
};
|
||
|
}
|
||
|
|
||
|
const _: A<
|
||
|
{
|
||
|
y! { test.tou8 }
|
||
|
},
|
||
|
>;
|