Sign in
android
/
platform
/
external
/
rust
/
android-crates-io
/
11eb3fcdd9db5bbc63aae4ddb0a44018f41b4cf2
/
.
/
crates
/
paste
/
tests
/
ui
/
case-warning.rs
blob: fdea4d619d7cf75b812e3e5e44c12eaa8499916b [
file
] [
log
] [
blame
]
#![
deny
(
warnings
)]
use
paste
::
paste
;
macro_rules
!
m
{
(
$i
:
ident
)
=>
{
paste
!
{
pub
fn
[<
foo $i
>]()
{}
}
};
}
m
!(
Bar
);
fn
main
()
{}