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
2010-06-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs1014.cs
blob
6d65ce11e75b77be41a35231a34474a2469ea326
1
// cs01014.cs: A get or set accessor expected
2
// Line: 9
3
4
class
C
5
{
6
public int
Prop
{
7
set
{
8
}
9
bool
val
;
10
}
11
}