Merge pull request #5210 from alexrp/profiler-runtime-settings
[mono.git] / mono / tests / assemblyresolve_event5_helper.cs
1 using System;
2
3 public class SimpleTypedAttribute : Attribute {
4         public SimpleTypedAttribute (Type t) { }
5 }
6
7 [SimpleTypedAttribute(typeof(Foo))] /* Foo defined in the assemblyresolve_event5_label assembly */
8 public class MyClass {
9         public MyClass () { }
10 }