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

cs0657-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 63d06b31b8eec75890df64d9c233db483f4f2fcb (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0657.cs : 'return' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are 'assembly, module'
// Line : 7

using System;

[method: CLSCompliant (false)]


public class C
{
}