Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-425.cs
1 // Test for bug #57047
2 using System;
3 public class A : Attribute {
4         [@A]
5         public static void Main() {
6         }
7 }
8 public class AAttribute : Attribute {}
9