summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0103-12.cs
blob: 9e2274cfe315e7d715e856095816cb033963d3af (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0103: The name `bar' does not exist in the current context
// Line: 8

public class Test
{
	static void Main ()
	{
		if (false && bar ()) {
		}
	}
}