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
add test to confirm behavior of Control.SetVisibleCore, and remove some redundant...
[mcs.git]
/
tests
/
test-96.cs
blob
718a95f17496e532ca53226f11a23a959c92ad57
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
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
}