a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
240 B
C#
25 lines
240 B
C#
using System;
|
|
|
|
class A
|
|
{
|
|
class C : Exception { }
|
|
|
|
public class B
|
|
{
|
|
class C : Exception { }
|
|
|
|
public B () {
|
|
try {
|
|
throw new A.B.C ();
|
|
}
|
|
catch (C e) {
|
|
}
|
|
}
|
|
}
|
|
|
|
public static void Main()
|
|
{
|
|
object o = new A.B();
|
|
}
|
|
}
|