cs0183.cs 136 B

12345678910111213
  1. // cs0183.cs: the expression is always of the type `x'
  2. // Line:
  3. class X {
  4. static void Main ()
  5. {
  6. int i;
  7. if (i is int){
  8. }
  9. }
  10. }