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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0119-4.cs
blob
70807c9f52b507d0c6b1a4ceaab4f9bafaf54c0e
1
// CS0119: Expression denotes a `variable', where a `type' was expected
2
// Line: 9
3
4
class
A
5
{
6
private string
test
;
7
public void
f
()
8
{
9
this
.
test bad
=
null
;
10
}
11
static void
Main
() {}
12
}
13