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

cs0647.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 696e83467cba7b6182d6e6651d7ce931626177a0 (plain)
1
2
3
4
5
6
7
8
9
// cs0647: Format of GUID is invalid
// Line: 5
using System.Runtime.InteropServices;

[Guid ("aaa")]

class X {
static void Main () {}
}