summaryrefslogtreecommitdiff
path: root/mcs/tests/gtest-390.cs
blob: 1aa66bde21bb24dbddeb7ece7209192fcced2cb3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

class Program
{
	public static int Main ()
	{
		Error error = Error.FILE_NOT_FOUND;
		return (error == null) ? 1 : 0;
	}
}

enum Error
{
	FILE_NOT_FOUND
}