Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-390.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
}