mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
10 lines
276 B
Plaintext
10 lines
276 B
Plaintext
// #target: linux-x64
|
|
import libc;
|
|
fn void a()
|
|
{
|
|
fault x = f; // #error: 'f' could not be found
|
|
ulong z = (ulong); // #error: Implicitly casting 'typeid' to 'ulong' is not permitted
|
|
z = (Sigset_t*)(x); // #error: Implicitly casting 'Sigset_t*' (ulong[16]*) to 'ulong'
|
|
}
|
|
|