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: b24bca1e48c03c60ec3a63e26357b68cd0ce9741 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Compiler options: test-353-p2.cs /out:test-353.exe

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