[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git] / mcs / errors / cs0183.cs
blobc067524001797eaaf5b66e68a52ff80bb98aefe0
1 // CS0183: The given expression is always of the provided (`int') type
2 // Line:
3 // Compiler options: -warnaserror -warn:1
5 class X {
7 static void Main ()
9 int i = 5;
11 if (i is int){