标签: c++ compilation clang
我有以下CPP程序
int function(int a, float b); _declspec(nothrow) int function(int a, float b) { return 0; }
当我使用clang 5.0进行编译时,它通过而没有任何编译错误。 但是,当我使用clang 9.0进行编译时,出现冲突的类型错误。
如果有人知道为什么clang 9.0会将它们视为“冲突类型”,请告诉我。
复制:https://godbolt.org/z/Jm7WxV