2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-partial-09.cs
blobc2ae61435a9801c6ea63af8c3794b420c6197508
1 // The standard says this doesn't have to have the 'abstract' modifier
2 public partial class Foo
4 public string myId;
7 public abstract partial class Foo
9 public string Id { get { return myId; } }
12 public class Bar : Foo
14 public Bar (string id) { myId = id; }
17 public class PartialAbstractCompilationError
19 public static void Main ()
21 System.Console.WriteLine (typeof (Foo).IsAbstract);