Renamed target AssignProjectConfigurations to AssignProjectConfiguration (without...
[mono.git] / mcs / errors / cs0647-15.cs
1 // CS0647: Error during emitting `System.Runtime.CompilerServices.MethodImplAttribute' attribute. The reason is `Incorrect argument value.'
2 // Line: 8
3
4 using System.Runtime.CompilerServices;
5
6 class Test
7 {
8         [MethodImplAttribute(444)]
9         public void test ()
10         {
11         }
12 }