blob: 052d26e1248f65f1b1195cc9da34810144ff3f81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// CS1502: The best overloaded method match for `C.Foo(dynamic)' has some invalid arguments
// Line: 13
static class C
{
public static void Foo (dynamic d)
{
}
static void Main()
{
dynamic d = null;
Foo (ref d);
}
}
|