[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0315.cs
1 // CS0315: The type `int' cannot be used as type parameter `TEventArgs' in the generic type or method `X.D<TEventArgs>'. There is no boxing conversion from `int' to `System.EventArgs'
2 // Line: 8
3
4 class X
5 {
6         delegate void D<TEventArgs> () where TEventArgs : System.EventArgs;
7
8         D<int> x;
9 }
10
11