[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs0524-2.cs
1 // CS0524: Interfaces cannot declare classes, structs, interfaces, delegates, or enumerations
2 // Line: 5
3
4 interface Interface {
5         interface I {}
6 }