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-05-19 Jb Evain <jbevain@novell.com>
[mcs.git]
/
tests
/
test-302.cs
blob
8191dbc1b290773ee896d8ff3bcab7dee0967359
1
using
System
;
2
3
class
A
4
{
5
class
C
:
Exception { }
6
7
public class
B
8
{
9
class
C
:
Exception { }
10
11
public
B
() {
12
try
{
13
throw new
A
.
B
.
C
();
14
}
15
catch
(
C e
) {
16
}
17
}
18
}
19
20
public static void
Main
()
21
{
22
object
o
=
new
A
.
B
();
23
}
24
}