14 lines
142 B
Rust
14 lines
142 B
Rust
//@ known-bug: #131915
|
|
|
|
macro_rules! y {
|
|
( $($matcher:tt)*) => {
|
|
x
|
|
};
|
|
}
|
|
|
|
const _: A<
|
|
{
|
|
y! { test.tou8 }
|
|
},
|
|
>;
|