1pub fn S() type {
2 return struct {};
3}
4pub export fn entry() void {
5 _ = [0]S;
6}
7
8// error
9//
10// :5:12: error: expected type 'type', found 'fn () type'