bug13.cs 111 B

1234567891011
  1. using System;
  2. class X {
  3. static void Main ()
  4. {
  5. Type t = null;
  6. if (t.GetType () == null)
  7. return;
  8. }
  9. }