blob: 2bd9188e07f2b4dc0cdc983799b54172c0a7476c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS1601: Method or delegate parameter cannot be of type `ref System.TypedReference'
// Line: 10
using System;
class X {
static void Main ()
{
}
static void M (ref TypedReference a)
{
}
}
|