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-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0571-7.cs
blob
d7f29faa35bc8769e29293c82da455fc7a4a646b
1
// CS0571: `C.Prop.set': cannot explicitly call operator or accessor
2
// Line: 14
3
4
class
C
5
{
6
delegate void
D
(
int
i
);
7
8
static int
Prop
{
9
set
{}
10
}
11
12
public static void
Main
()
13
{
14
D d
=
set_Prop
;
15
}
16
}