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

cs0619-21.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3dec96ca683f11ea86b4ffbee34115fbe03785f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0619-21.cs: `Obsolete' is obsolete: `'
// Line: 12
// Compiler options: -unsafe

[System.Obsolete("", true)]
struct Obsolete {
}

class MainClass {
        unsafe public static void Main ()
        {
                System.Console.WriteLine (sizeof (Obsolete));
        }
}