summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/input/c/utf8-identifiers.c
blob: e3281aac301b59ff6b29df7f3813f410262fa5e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
void FooUtf8Сhar(void) // C is encoded in UTF-8
{
}

struct テスト         // Japanese 'test'
{
    void トスト() {}  // Japanese 'toast'
};

int main() {
    テスト パン;        // Japanese パン 'bread'
    パン.トスト();
}