2021-07-31 06:09:54 +09:00
|
|
|
struct Foo {}
|
|
|
|
|
|
|
|
impl Foo {
|
|
|
|
pub fn bar()
|
2021-12-04 11:05:30 -07:00
|
|
|
//~^ ERROR: associated function in `impl` without body
|
2021-07-31 06:09:54 +09:00
|
|
|
}
|
2021-12-04 11:05:30 -07:00
|
|
|
//~^ERROR expected one of `->`, `where`, or `{`, found `}`
|
2021-07-31 06:09:54 +09:00
|
|
|
|
|
|
|
fn main() {}
|