// CS0029: Cannot implicitly convert type `A.B' to `A.B' // Line: 14 class A { public class B { } } class Test { static A.B a; static A.B b = a; }