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

test-259.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 55f6beb4f12654ea9c00cdb3fa5547f1a0e3cc48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

public class Testing
{
	public enum INT : int { Zero }
	public const INT JPEG_SUSPENDED = (INT)0;
	public const INT JPEG_HEADER_OK = (INT)1;

	// Test that we can have a null value here
	public const Testing testing = null;
 
	public static void Main()
	{ }
}