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
update readme (#21797)
[mono-project.git]
/
mcs
/
errors
/
cs0119-9.cs
blob
cf302c20bccf5c3214e9fcb2abd643178608782c
1
// CS0119: Expression denotes a `type', where a `variable' or `value' was expected
2
// Line: 15
3
4
class
A
5
{
6
public class
D
7
{
8
}
9
}
10
11
class
B
12
{
13
public
B
()
14
{
15
A
.
D
=
2
;
16
}
17
}