8b9b85e7f5
Former-commit-id: 172c8e3c300b39d5785c7a3e8dfb08ebdbc1a99b
29 lines
361 B
C#
29 lines
361 B
C#
// Compiler options: -r:test-792-lib.dll
|
|
|
|
// Compilation test only for missing 2nd level dependecies
|
|
|
|
[A2]
|
|
class Program
|
|
{
|
|
void Test ()
|
|
{
|
|
new X();
|
|
|
|
var s = new MultipleSameNames ();
|
|
s.AA = "1";
|
|
|
|
Overload.Test (1);
|
|
}
|
|
|
|
void Test2 (IMemberDelayed md)
|
|
{
|
|
md.Working ();
|
|
var t = typeof (IMemberDelayed);
|
|
}
|
|
|
|
public static void Main ()
|
|
{
|
|
}
|
|
}
|
|
|