mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
16 lines
331 B
C
16 lines
331 B
C
|
|
static initialize @priority("hello") // #error: Expected an argument to '@priority'
|
|
{
|
|
}
|
|
|
|
static initialize @priority(1, 2) // #error: Too many arguments for
|
|
{
|
|
}
|
|
|
|
static initialize @priority(0) // #error: Expected an argument to '@priority'
|
|
{
|
|
}
|
|
|
|
static initialize @priority(65536) // #error: Expected an argument to '@priority'
|
|
{
|
|
} |