summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/recover-hrtb-before-dyn-impl-kw.rs
blob: b9e3c5783ebd77658f471bcb0db9c77258853eec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
trait Trait {}

fn test(_: &for<'a> dyn Trait) {}
//~^ ERROR `for<...>` expected after `dyn`, not before

fn test2(_: for<'a> impl Trait) {}
//~^ ERROR `for<...>` expected after `impl`, not before

// Issue #118564
type A2 = dyn<for<> dyn>;
//~^ ERROR expected identifier, found `>`

fn main() {}