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

test-353.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5aa753fdc2d4975c3d118235ed243f67dbd53aaa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Compiler options: support-353.cs -out:test-353.exe

using System;
 
[Obsolete]
public class One { }
 
#pragma warning disable 612
 
public class Two {
        private One one;
}