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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0154-2.cs
blob
983751523621359543e46fcd512706afdcf2f5cb
1
// CS0154: The property or indexer `B.Foo' cannot be used in this context because it lacks the `get' accessor
2
// Line: 13
3
// this is bug 55780.
4
5
class
A
{
6
public int
Foo { get { return 1; }
}
7
}
8
9
class
B
:
A
{
10
public new int
Foo { set { }
}
11
static void
Main
()
12
{
13
System
.
Console
.
WriteLine
(
new
B
().
Foo
);
14
}
15
}