]> git.lizzy.rs Git - rust.git/blob - tests/ui/structs/issue-80853.rs
Rollup merge of #106699 - eholk:await-chains-drop-tracking, r=wesleywiser
[rust.git] / tests / ui / structs / issue-80853.rs
1 struct S;
2
3 fn repro_ref(thing: S) {
4     thing(); //~ ERROR expected function, found `S`
5 }
6
7 fn main() {}