blob: a81cb9586b1a4f082a881d37ea46c23cf6acafb2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// CS1503: Argument `#1' cannot convert `__arglist' expression to type `object'
// Line: 14
using System;
class Program
{
static void Foo (object o)
{
}
static void Main ()
{
Foo (__arglist (null));
}
}
|