Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
4486c24db3ca1c698b34ea08bee15194774b53df
/
.
/
tests
/
ui
/
invalid
/
invalid-inline.rs
blob: 2501b1e23f2f14737c12a963ef5b72345bc63749 [
file
] [
log
] [
blame
]
#![
allow
(
dead_code
)]
#[
inline
(
please
,
no
)]
//~ ERROR expected one argument
fn
a
()
{
}
#[
inline
()]
//~ ERROR expected one argument
fn
b
()
{
}
fn
main
()
{
a
();
b
();
}