15 lines
275 B
C#
Raw Normal View History

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()
{ }
}