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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
tests
/
test-411.cs
blob
e8f70bc78687dc60e59e771a7c1797ba5070391c
1
// Compiler options: -r:test-411-lib.dll
2
3
namespace
QtSamples
4
{
5
using
Qt
;
6
7
public class
QtClass
:
QtSupport
8
{
9
public
QtClass
()
10
{
11
mousePressEvent
+=
new
MousePressEvent
(
pressEvent
);
12
}
13
14
public void
pressEvent
()
{ }
15
}
16
17
18
public class
Testing
19
{
20
public static int
Main
()
21
{
22
QtClass q
=
new
QtClass
();
23
24
return
0
;
25
}
26
}
27
}
28
29
30