2013-10-03 11:53:46 +02:00
|
|
|
struct S;
|
2012-01-11 19:35:40 -08:00
|
|
|
|
2013-10-03 11:53:46 +02:00
|
|
|
impl S {
|
2015-01-16 16:04:28 +13:00
|
|
|
static fn f() {}
|
2020-02-15 01:50:26 +01:00
|
|
|
//~^ ERROR expected identifier, found keyword `fn`
|
|
|
|
//~| ERROR expected one of `:`, `;`, or `=`
|
|
|
|
//~| ERROR missing type for `static` item
|
2013-02-14 11:47:00 -08:00
|
|
|
}
|
2019-01-06 18:33:05 +03:00
|
|
|
|
|
|
|
fn main() {}
|