[interp] Reduce computation under calc_section mutex
[mono-project.git] / mcs / tests / test-822-lib.cs
blobd88e04ea5182ab69e4b432475353f2d038bad7cd
1 // Compiler options: -t:library
3 using System;
5 public class A
7 public virtual int Prop {
8 get {
9 return 1;
12 set {
13 throw new ApplicationException ();
18 public sealed class B : A
20 public override int Prop {
21 set {