cs0184.cs 143 B

12345678910111213
  1. // cs0184.cs: The expression is never of the provided type
  2. // Line:
  3. class X {
  4. static void Main ()
  5. {
  6. int a;
  7. if (a is byte){
  8. }
  9. }
  10. }