mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
16 lines
283 B
Plaintext
16 lines
283 B
Plaintext
|
|
fn void init1() @init("hello") // #error: Expected an integer value
|
|
{
|
|
}
|
|
|
|
fn void init2() @init(1, 2) // #error: Too many arguments for
|
|
{
|
|
}
|
|
|
|
fn void init3() @init(0) // #error: The priority must be a value
|
|
{
|
|
}
|
|
|
|
fn void init4() @init(65536) // #error: The priority must be a value
|
|
{
|
|
} |