[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1711.cs
1 // CS1711: XML comment on `A' has a typeparam name `T1' but there is no type parameter by that name
2 // Line: 8
3 // Compiler options: -doc:dummy.xml /warnaserror /warn:2
4
5 /// <summary>
6 ///  <typeparam name="T1" />
7 /// </summary>
8 class A
9 {
10 }