repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0019-16.cs
blob
e9c07ec3253a0f34cca2b8dd03c72ead3dc70702
1
// cs0019-16.cs: 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
}