2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-9.cs
blobe943c0a81c200f8c7e3b3fce067a265fd9b57886
1 // cs0019.cs: Operator `&' cannot be applied to operands of type `System.Reflection.MethodImplAttributes' and `System.Runtime.CompilerServices.MethodImplOptions'
2 // Line : 13
4 //
5 // From bug #59864
6 //
7 using System.Reflection;
8 using System.Runtime.CompilerServices;
10 public class Foo {
12 public static void Main ()
14 MethodImplAttributes methodImplAttributes = 0;
16 if ((methodImplAttributes & MethodImplOptions.Synchronized) == 0) {