[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1535-2.cs
1 // CS1535: Overloaded unary operator `implicit' takes one parameter
2 // Line: 6
3
4 public class Test
5 {
6         public static implicit operator string ()
7         {
8                 return null;
9         }
10 }