猫のテスト.cpp
#include <iostream>
int main() {
int à;
}
結果:
clang++ test.cpp
test.cpp:4:7: error: expected unqualified-id
int à;
^
1 error generated.
ユニコード変数名を許可するようにclangを取得する方法はありますか?
ありがとう!
猫のテスト.cpp
#include <iostream>
int main() {
int à;
}
結果:
clang++ test.cpp
test.cpp:4:7: error: expected unqualified-id
int à;
^
1 error generated.
ユニコード変数名を許可するようにclangを取得する方法はありますか?
ありがとう!