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

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

[System.Obsolete ("", true)]
class AA
{
        public AA ()
        {
                for (AA aa = null; aa != null;) {
                        System.Console.WriteLine (aa);
                }
        }

	static void Main () {}
}