summaryrefslogtreecommitdiffstats
path: root/tests/diagnostics/if-empty-body.slang
blob: de89833520730a9b1450af4219f4ed5f0d782c18 (plain)
1
2
3
4
5
6
7
8
9
10
11
//DIAGNOSTIC_TEST(windows):SIMPLE:

// Test that use of empty statement after an `if` leads to an warning.

struct S {}

void test()
{
	if (1+1==2);
		return;
}