add ISafeSerializationData
[mcs.git] / tests / test-259.cs
blob55f6beb4f12654ea9c00cdb3fa5547f1a0e3cc48
1 using System;
3 public class Testing
5 public enum INT : int { Zero }
6 public const INT JPEG_SUSPENDED = (INT)0;
7 public const INT JPEG_HEADER_OK = (INT)1;
9 // Test that we can have a null value here
10 public const Testing testing = null;
12 public static void Main()
13 { }