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
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0547-2.cs
blob
7dfa73a694bfd6562956b2d373491fc04f55f4a8
1
// CS0547: `PropertyInterface.Value': property or indexer cannot have void type
2
// Line: 5
3
4
interface
PropertyInterface
{
5
void
Value { get; }
6
}
7