mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 16:23:07 +00:00
12 lines
209 B
C
12 lines
209 B
C
#define bar() ""
|
|
#define FOO bar() "," bar()
|
|
|
|
// translate-c
|
|
// target=x86_64-linux
|
|
// c_frontend=clang
|
|
//
|
|
// pub inline fn bar() @TypeOf("") {
|
|
// return "";
|
|
// }
|
|
// pub const FOO = bar() ++ "," ++ bar();
|