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

cs0610-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5d90a594355f73b77c7d891db4bc6e58164fbcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0610-2.cs: Field or property cannot be of type `System.TypedReference'
// Line: 5

public class Sample {
        System.TypedReference reference {
                get {
                        return null;
                }
        }
}