Class a {}
Class b : a {}

Void main()
{
  a myA = new a();
  b myB = myA as b;
}

이딴식으로 구현하려는데 안됨 도와조