summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1599.cs
blob: 5cef32d7f97ab2362152444900467eddb83a6b0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1599: Method or delegate cannot return type `System.TypedReference'
// Line: 8

using System;

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