summaryrefslogtreecommitdiffstats
path: root/tests/diagnostics/undefined-identifier.slang
blob: 88633bf07979e654a8b0f471bf03de1cc95bf7b3 (plain)
1
2
3
4
5
6
7
//DIAGNOSTIC_TEST:SIMPLE:
// use of undefined identifier

void foo()
{
	int a = b;
}