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
tag rc1
[mcs.git]
/
errors
/
cs0201.cs
blob
36d1a260a356749199b2ea3f59ce53aeb01c68fc
1
// cs0201.cs: Only assignment, call, increment, decrement, and new object expressions can be used as a statement
2
// Line: 11
3
4
using
System
;
5
6
public class
X
7
{
8
public static void
Main
()
9
{
10
2
*
3
;
11
}
12
}