]> git.proxmox.com Git - rustc.git/blob - tests/ui/structs/issue-80853.rs
New upstream version 1.68.2+dfsg1
[rustc.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() {}