Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0647-15.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 09bd3b531842dffc89e1bdcd13e3fd2bd303f852 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0647.cs: Error emitting 'MethodImplAttribute' attribute because 'Incorrect argument value'
// Line: 8

using System.Runtime.CompilerServices;

class Test
{
	[MethodImplAttribute(444)]
	public void test ()
	{
	}
}