summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0657-21.cs
blob: 3442a1170264e7a07ba962d37f01f3eb8337c820 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0657: `return' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are `method'. All attributes in this section will be ignored
// Line: 9
// Compiler options: -warnaserror

using System;

public class C
{
	[return: CLSCompliant (false)]
	public C ()
	{
	}
}