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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0119-8.cs
blob
2ee38442bb45599fa1044297210eb96104217c98
1
// CS0119: Expression denotes a `type', where a `variable', `value' or `method group' was expected
2
// Line: 8
3
4
class
C
5
{
6
public static void
Main
()
7
{
8
int
i
= (
C
) +
1
;
9
}
10
}