summaryrefslogtreecommitdiff
path: root/tests/preprocessor/pragma-warning/with-includes-1.slang
blob: 397ef84878760de316c159b73147ff0a2ddd6c4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//TEST:SIMPLE(filecheck=CHECK):
// #ifdef support
#include "helper-1.slang"

int64_t GetValue();

void f()
{
	int i;
	// CHECK-NOT: ([[# @LINE+1]]): warning 30081:
	i = GetValue();
}

// Test that the #pragma warning (disable) in helper-1.slang disables the warning on line 10