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-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1512-2.cs
blob
f833c99e04ad59bf527d802a0bf7cd878c23e6e6
1
// CS1512: Keyword `base' is not available in the current context
2
// Line: 11
3
4
struct
S
5
{
6
delegate int
D
();
7
8
void
Test
()
9
{
10
D d
=
delegate
{
11
return base
.
GetHashcode
();
12
};
13
}
14
}