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

cs1599.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 871d9fb3e7a2bf515bace3750637f208f8c47513 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1599: The return type of `System.TypedReference' is not allowed
// Line: 8

using System;

class C
{
    public TypedReference Method ()
    {
		return null;
    }
}