blob: 964dca945c43052a6e337a34646acd9664e7b120 (
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 Test
{
[MethodImplAttribute(445)]
public void test ()
{
}
}
|