Files
c3c/test/test_suite/constants/char_literals.c3t
2021-05-11 14:58:21 +02:00

25 lines
411 B
Plaintext

// #file: file1.c3
module test;
public char a = ' ';
public char b = '\r';
public char c = '\t';
public char d = '\n';
public char e = '\0';
public char f = '\'';
public char g = '"';
public char h = '\\';
public char i = '\e';
// #expect: test.ll
@a = global i8 32
@b = global i8 13
@c = global i8 9
@d = global i8 10
@e = global i8 0
@f = global i8 39
@g = global i8 34
@h = global i8 92
@i = global i8 27