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: 946b77fbd35e9441bfc7cd51e00cdeb9b725ba5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0610.cs: Field or property cannot be of type 'System.TypedReference'
// Line: 5

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