blob: 4a532a22ae1f1e914bd669294bb90513f65e6dc5 (
plain)
1
2
3
4
5
6
7
8
9
|
export fn entry() void {
const a: [*c]void = undefined;
_ = a;
}
// error
//
// :2:18: error: C pointers cannot point to non-C-ABI-compatible type 'void'
// :2:18: note: 'void' is a zero bit type; for C 'void' use 'anyopaque'
|