Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-255.cs
1 using System;
2
3 [AttributeUsage(AttributeTargets.All)]
4 public class TestAttribute: Attribute
5 {
6 }
7
8 [type: Obsolete]
9
10 public class C {
11     [return: Test]
12     [Test]
13     void Method () {}
14     
15     public static void Main () {}
16 }