Files
linux-packaging-mono/mcs/errors/cs0029-41.cs

12 lines
204 B
C#
Raw Normal View History

// CS0029: Cannot implicitly convert type `System.TypedReference' to `object'
// Line: 10
using System;
class Test
{
public static void Main ()
{
var res = default (TypedReference).ToString ();
}
}