blob: 46e44c8a4fb18f99c474ceff5fb381869ba5b48f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
class C
{
static void Test (C arg)
{
}
public static void Main ()
{
object value = null;
C.Test(
#if true
(C)
#else
no error here
#endif
value);
}
}
|