add ISafeSerializationData
[mcs.git] / tests / test-478.cs
blob948c28f81b095f7c08b12a08ee904bc08a541437
1 using System;
2 using System.ComponentModel;
3 using System.ComponentModel.Design;
5 namespace Test {
6 class MainClass {
7 public static void Main() {}
10 [Test(TestEnum2.TestValue)]
11 enum TestEnum {
12 Value
15 class TestAttribute : Attribute {
16 public TestAttribute( TestEnum2 value ) {
20 class Test2Attribute : Attribute {
23 enum TestEnum2 {
24 [Test2]
25 TestValue