Initial commit
[mono.git] / mcs / class / referencesource / mscorlib / system / runtime / compilerservices / suppressmergecheckattribute.cs
1 // ==++==
2 // 
3 //   Copyright (c) Microsoft Corporation.  All rights reserved.
4 // 
5 // ==--==
6
7 using System.Runtime.InteropServices;
8
9 namespace System.Runtime.CompilerServices 
10 {
11     [AttributeUsage(AttributeTargets.Class | 
12                     AttributeTargets.Constructor | 
13                     AttributeTargets.Method |
14                     AttributeTargets.Field |
15                     AttributeTargets.Event |
16                     AttributeTargets.Property)]
17
18     internal sealed class SuppressMergeCheckAttribute : Attribute
19     {
20         public SuppressMergeCheckAttribute() 
21         {}  
22     }
23 }
24