2021-05-29 17:07:34 -05:00
|
|
|
// Regression test for #85794
|
|
|
|
|
|
|
|
struct Baz {
|
|
|
|
inner : dyn fn ()
|
|
|
|
//~^ ERROR expected `,`, or `}`, found keyword `fn`
|
2022-09-27 03:20:55 -05:00
|
|
|
//~| ERROR expected identifier, found keyword `fn`
|
2021-05-29 17:07:34 -05:00
|
|
|
//~| ERROR cannot find type `dyn` in this scope
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|