Files
c3c/test/test_suite/constants/empty_byte_literal.c3

8 lines
134 B
Plaintext

import std;
fn void main()
{
char[] cd = {};
char[*] b = x""; // #error: must be at least 1 byte
io::printfn("%d", b.len);
}