blob: bafe08b73813dccbc33bc0a2899bcc7bcd6ff677 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//TEST:SIMPLE(filecheck=CHECK):
// #ifdef support
int64_t GetValue();
void f()
{
int i;
// CHECK-NOT: ([[# @LINE+2]]): warning 30081:
#pragma warning (suppress : 30081)
i = GetValue();
}
// Simple test of #pragma warning (suppress)
|