[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git] / mcs / errors / cs0019-16.cs
blobcb21735b41474a74b63c5512856ab20c4ecc7263
1 // CS0019: 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));