repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0019-16.cs
blob
cb21735b41474a74b63c5512856ab20c4ecc7263
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
}