e46a49ecf1
Former-commit-id: d0813289fa2d35e1f8ed77530acb4fb1df441bc0
12 lines
204 B
C#
12 lines
204 B
C#
// CS0029: Cannot implicitly convert type `System.TypedReference' to `object'
|
|
// Line: 10
|
|
|
|
using System;
|
|
|
|
class Test
|
|
{
|
|
public static void Main ()
|
|
{
|
|
var res = default (TypedReference).ToString ();
|
|
}
|
|
} |