Sign in
fuchsia
/
third_party
/
rust
/
adf8d168af9334a8bf940824fcf4207d01e05ae5
/
.
/
tests
/
ui
/
lifetimes
/
raw
/
macro-lt.rs
blob: d1167b00467c4a103e4a4f7c9ac1c6e3cc1a1687 [
file
] [
log
] [
blame
]
//@ check-pass
//@ edition: 2021
macro_rules
!
lifetime
{
(
$lt
:
lifetime
)
=>
{
fn
hello
<
$lt
>()
{}
}
}
lifetime
!(
'
r
#
struct
);
fn
main
()
{}