Sign in
android
/
toolchain
/
rustc
/
fc8a4ff31fec5a822fe5eb0da3a6f87866072960
/
.
/
src
/
test
/
ui
/
parser
/
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
()
{}