[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / tests / test-822-lib.cs
1 // Compiler options: -t:library
2
3 using System;
4
5 public class A
6 {
7         public virtual int Prop {
8                 get {
9                         return 1;
10                 }
11                 
12                 set {
13                         throw new ApplicationException ();
14                 }
15         }
16 }
17
18 public sealed class B : A
19 {
20         public override int Prop {
21                 set {
22                 }
23         }
24 }