[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0029-5.cs
1 // CS0029: Cannot implicitly convert type `T' to `int'
2 // Line: 4
3
4 class X {
5         static void Main()
6         {
7                 int a = new T ();
8         }
9 }
10
11 struct T {
12 }