summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0183.cs
blob: c067524001797eaaf5b66e68a52ff80bb98aefe0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0183: The given expression is always of the provided (`int') type
// Line:
// Compiler options: -warnaserror -warn:1

class X {

	static void Main ()
	{
		int i = 5;

		if (i is int){
		}
	}
}