Sign in
rust
/
rust
/
8a2c6ea4097f8bd2f282af2c491ff58622d12bbe
/
.
/
tests
/
ui
/
parser
/
removed-syntax
/
removed-syntax-static-fn.rs
blob: cd643b874dbda108a22c18bf7a53b67f52ddb470 [
file
]
struct
S
;
impl
S
{
static
fn
f
()
{}
//~^ ERROR expected identifier, found keyword `fn`
//~| ERROR expected one of `:`, `;`, or `=`
//~| ERROR missing type for `static` item
}
fn
main
()
{}