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
update
[mcs.git]
/
tests
/
test-638.cs
blob
6b751cfb1851e9e14cb9ad6f9519c779cf8efa91
1
using
System
;
2
using
System
.
Threading
;
3
4
class
Fail
{
5
static void
Main
() {
6
string
a
=
""
;
7
a
+=
0
+
"A"
+
1
+
"B"
+
2
;
8
EventHandler t
=
delegate
{
9
if
(
a
!=
"0A1B2"
)
10
throw new
Exception
();
11
};
12
t
(
null
,
null
);
13
}
14
}