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
2010-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0119-5.cs
blob
b8139fc8ed1f7e53b82682c3a62c7a0e0d78cbb9
1
// CS0119: Expression denotes a `variable', where a `type' was expected
2
// Line: 8
3
4
class
A
5
{
6
public void
f
()
7
{
8
this
.
test bad
=
null
;
9
}
10
static void
Main
() {}
11
}
12