blob: 0c1ef17c61215e2b48a6eb8462bddc63e21ac979 [file] [log] [blame]
main() {
// Identifiers can't have non-ascii characters.
// Having this comment shouldn't trigger any asserts though.
int æFoo = 42;
// Try comment on an identifier that doesn't start with a non-ascii char too.
int fooÆ = 42;
// Try comment on an OK identifier too.
int foo = 42;
print(/* comment */ æFoo);
print(/* comment */ fooÆ);
print(/* comment */ foo);
}