2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-92.cs
blob1de5aa71a7dbc23f49d57fe2a3a4177a22f4c78d
1 //
2 // This test exposed a bug that Dan found:
3 //
4 // The InnerBase used to be the `builder' that was passed to InnerBase,
5 // so even if InnerBase was a toplevel, it would be defined in the context
6 // of being nested. Buggy.
7 //
8 class Outer {
9 class Inner : InnerBase {
13 abstract class InnerBase {
16 class MainClass {
17 public static int Main () {
18 return 0;