зеркало из https://github.com/microsoft/clang.git
Add a Microsoft C test following r131201.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@131202 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Родитель
30aff5b794
Коммит
83e0995105
|
@ -79,3 +79,11 @@ struct X0 {
|
|||
enum : long long { // expected-warning{{enumeration types with a fixed underlying type are a Microsoft extension}}
|
||||
SomeValue = 0x100000000
|
||||
};
|
||||
|
||||
|
||||
void pointer_to_integral_type_conv(char* ptr) {
|
||||
char ch = (char)ptr;
|
||||
short sh = (short)ptr;
|
||||
ch = (char)ptr;
|
||||
sh = (short)ptr;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче