repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[configure] Add new target.
[mono-project.git]
/
mcs
/
tests
/
test-96.cs
blob
5cd064601426e4420d32c769f800b816dee857f0
1
//
2
// Compilation test
3
//
4
// This used to be a bug in the name lookups in delegate declarations
5
//
6
namespace
N1
7
{
8
public class
A
9
{
10
public static int
Main
()
11
{
12
return
0
;
13
}
14
}
15
16
//
17
// A used to not be resolved
18
//
19
public delegate void
C
(
object
sender
,
A a
);
20
}