blob: b9a4b2eac6dc2107f7838d2c7a8b11494688c855 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// CS0591: Invalid value for argument to `System.Runtime.CompilerServices.MethodImplAttribute' attribute
// Line: 8
using System.Runtime.CompilerServices;
class Program
{
[MethodImpl((MethodImplOptions)255)]
void Foo()
{
}
}
|