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

int64_t GetValue();

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

// Test that the #pragma warning (push / pop) englobing helper-2.slang are working