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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs1002-3.cs
blob
2f866132b07ac1162eb29e1a33aa4582d5d5f8ea
1
// Cs1002: Expecting `;'
2
// Line: 9
3
4
class
D
{
5
static int
a
=
1
;
6
static int
b
=
2
;
7
static int
Main
()
8
{
9
return
(
a
<<
1
)
~
(
b
);
10
}
11
}