猫测试.cpp
#include <iostream>
int main() {
int à;
}
结果是:
clang++ test.cpp
test.cpp:4:7: error: expected unqualified-id
int à;
^
1 error generated.
现在,有没有办法让 clang 允许 unicode 变量名?
谢谢!
猫测试.cpp
#include <iostream>
int main() {
int à;
}
结果是:
clang++ test.cpp
test.cpp:4:7: error: expected unqualified-id
int à;
^
1 error generated.
现在,有没有办法让 clang 允许 unicode 变量名?
谢谢!