13 lines
191 B
Zig
13 lines
191 B
Zig
pub fn S() type {
|
|
return struct {};
|
|
}
|
|
pub export fn entry() void {
|
|
_ = [0]S;
|
|
}
|
|
|
|
// error
|
|
// target=native
|
|
// backend=stage2
|
|
//
|
|
// :4:1: error: expected type 'type', found 'fn() type'
|