[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1574-2.cs
1 // CS1574: XML comment on `Test' has cref attribute `Method(System.String)' that could not be resolved
2 // Line: 8
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:1
4
5 using System;
6
7 /// <seealso cref="Method(System.String)"/>
8 public class Test
9 {
10 }
11