2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0019-16.cs
blobe9c07ec3253a0f34cca2b8dd03c72ead3dc70702
1 // cs0019-16.cs: Operator `<<' cannot be applied to operands of type `byte' and `uint'
2 // Line: 9
4 using System;
5 public class PerformanceTest2 {
6 public static void Main () {
7 uint j, k;
8 j = 0;
9 k = ((byte) 1 << (7 - j % 8));