Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-178.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 482429a4646f1338a241a777a57f98a23bee5359 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// This test ensures that we emit attributes for operators
// only once.
//

using System.ComponentModel;
using System.Reflection;

public class BrowsableClass
{
        [EditorBrowsable(EditorBrowsableState.Always)]
        public static BrowsableClass operator ++(BrowsableClass a) 
        { 
                return null; 
        }

        public static int Main ()
        {
                BrowsableClass c = new BrowsableClass ();
                MethodInfo mi = c.GetType().GetMethod ("op_Increment");
                
                object[] attributes = mi.GetCustomAttributes
                        (typeof(EditorBrowsableAttribute), false);

                if (attributes.Length != 1)
                        return 1;

                return 0;
        }
}