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