blob: bcf4046c2eb6b25e8fd31c0d9bf4e657bae9112c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using System.Reflection;
class C
{
static Action f = new Action (
delegate {
Assembly[] aa = {
typeof (object).Assembly,
};
});
public static void Main ()
{
}
}
|