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