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 #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs0118-5.cs
blob
3e942b44738e882db0ad0cf8ac7afb5d968ffc36
1
// CS0118: `A.s' is a `field' but a `type' was expected
2
// Line: 11
3
4
class
A
5
{
6
public string
s
;
7
}
8
9
class
X
:
A
10
{
11
s MyProperty
{
12
get
{
13
return
s
;
14
}
15
}
16
}