Merge pull request #4615 from alexanderkyte/string_error_handling
[mono.git] / mcs / errors / cs0591-6.cs
1 // CS0591: Invalid value for argument to `System.Runtime.CompilerServices.MethodImplAttribute' attribute
2 // Line: 8
3
4 using System.Runtime.CompilerServices;
5
6 class Program
7 {
8         [MethodImpl((MethodImplOptions)255)]
9         void Foo()
10         {
11         }
12 }