summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0019-16.cs
blob: cb21735b41474a74b63c5512856ab20c4ecc7263 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0019: Operator `<<' cannot be applied to operands of type `byte' and `uint'
// Line: 9

using System;
public class PerformanceTest2 {
	public static void Main () {
		uint j, k;
		j = 0;
		k = ((byte) 1 << (7 - j % 8));
	}
}