mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 03:51:18 +00:00
9 lines
159 B
Plaintext
9 lines
159 B
Plaintext
import std;
|
|
fn void a()
|
|
{
|
|
usz{} i = Z; // #error: A user-defined generic type was expected here, but the type was 'usz' (ulong)
|
|
}
|
|
fn int main()
|
|
{
|
|
return 0;
|
|
} |