a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
22 lines
325 B
C#
22 lines
325 B
C#
class B {
|
|
public S s;
|
|
}
|
|
class S {
|
|
public int a;
|
|
}
|
|
class T {
|
|
static B foo;
|
|
|
|
static int blah (object arg) {
|
|
B look = (B)arg;
|
|
foo.s.a = 9;
|
|
look.s.a = foo.s.a;
|
|
return look.s.a;
|
|
}
|
|
|
|
public static int Main() {
|
|
// Compilation only test;
|
|
return 0;
|
|
}
|
|
}
|