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-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs1512-2.cs
blob
734984c9e1abc6d2302ecd5fc6ac4c8727a35935
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
}