Merge pull request #5560 from kumpera/wasm-work-p3
[mono.git] / mcs / tests / dtest-053.cs
1 using System;
2
3 class TestAttribute : Attribute
4 {
5         public TestAttribute (dynamic[] arga)
6         {
7         }
8         
9         public dynamic[] a;
10 }
11
12 [Test (null, a = null)]
13 class C
14 {
15         public static void Main ()
16         {
17                 var a = typeof (C).GetCustomAttributes (true)[0];
18         }
19 }