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

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

public class Sample {
        const System.TypedReference arg = null;
}