139116244785032c0f937f8768eeb7564bbe7e88
[mono.git] / mcs / tools / linker / Tests / TestCases / Linker / NestedNested / Library.cs
1 using System;
2
3 public class Foo {
4 }
5
6 [NotLinked] public class Bar {
7
8         [NotLinked] public class Baz {
9
10                 [NotLinked] public class Gazonk {
11                 }
12         }
13 }
14
15 [NotLinked, AttributeUsage (AttributeTargets.All)]
16 public class NotLinkedAttribute : Attribute {
17 }