Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-259.cs
1 using System;
2
3 public class Testing
4 {
5         public enum INT : int { Zero }
6         public const INT JPEG_SUSPENDED = (INT)0;
7         public const INT JPEG_HEADER_OK = (INT)1;
8
9         // Test that we can have a null value here
10         public const Testing testing = null;
11  
12         public static void Main()
13         { }
14 }