[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0243-2.cs
1 // CS0243: Conditional not valid on `MyClass.GetHashCode()' because it is an override method
2 // Line: 6
3
4 public class MyClass
5 {
6         [System.Diagnostics.Conditional ("WOOHOO")]
7         public override int GetHashCode ()
8         {
9                 return base.GetHashCode ();
10         }
11 }