aboutsummaryrefslogtreecommitdiff
path: root/test/cases/translate_c/macro_function_string_concat.c
blob: cf9c2365933b8bc65a9ee7a80adff82fce85faff (plain)
1
2
3
4
5
6
7
8
9
10
11
#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();