Merge pull request #3766 from BrzVlad/feature-default-conc
[mono.git] / mcs / errors / cs0019-16.cs
1 // CS0019: Operator `<<' cannot be applied to operands of type `byte' and `uint'
2 // Line: 9
3
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));
10         }
11 }