Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

28 lines
356 B
C#

// Compiler options: -r:test-792-lib.dll
// Compilation test only for missing 2nd level dependecies
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 ()
{
}
}