Sign in
fuchsia
/
third_party
/
rust
/
972fef232ec0dd7a3f42091aa6f36cd68aeb3eef
/
.
/
tests
/
ui
/
macros
/
genercs-in-path-with-prettry-hir.rs
blob: 84370fcebbcbcd709c12fc37979d6aaedcc5e2c4 [
file
] [
log
] [
blame
]
//@ compile-flags: -Zunpretty=hir
// issue#97006
macro_rules
!
m
{
(
$attr_path
:
path
)
=>
{
#[
$attr_path
]
fn
f
()
{}
}
}
m
!(
inline
<
u8
>);
//~ ERROR: unexpected generic arguments in path
fn
main
()
{}