mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
15 lines
211 B
C
15 lines
211 B
C
module subscripting_tests @test;
|
|
|
|
fn void subscript_ct()
|
|
{
|
|
$if int.nameof[0] == 'i':
|
|
assert(true);
|
|
$else
|
|
assert(false);
|
|
$endif
|
|
$if int.nameof[^1] == 't':
|
|
assert(true);
|
|
$else
|
|
assert(false);
|
|
$endif
|
|
} |