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

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

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