about summary refs log tree commit diff
path: root/tests/ui/async-await/async-fn/impl-header.rs
blob: fb1844384ae08db55a84db752b060dc39b4e7135 (plain)
1
2
3
4
5
6
7
8
// edition:2018

struct F;

impl async Fn<()> for F {}
//~^ ERROR expected type, found keyword `async`

fn main() {}