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
Merge pull request #4926 from BrzVlad/fix-tls-v5
[mono-project.git]
/
mcs
/
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