Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
lifetimes
/
raw
/
three-tokens.rs
blob: 2ae54ebbcb537ccd28b350688f0e28d2976d3054 [
file
] [
log
] [
blame
] [
edit
]
//@ edition: 2015
//@ check-pass
// Ensure that we parse `'r#lt` as three tokens in edition 2015.
macro_rules
!
ed2015
{
(
'
r
#
lt
)
=>
{};
(
$lt
:
lifetime
)
=>
{
compile_error
!()
};
}
ed2015
!(
'
r
#
lt
);
fn
main
()
{}