1 struct S;
2 
repro_ref(thing: S)3 fn repro_ref(thing: S) {
4     thing(); //~ ERROR expected function, found `S`
5 }
6 
main()7 fn main() {}
8