[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1571.cs
1 // CS1571: XML comment on `Testing.Test.Bar(int)' has a duplicate param tag for `i'
2 // Line: 18
3 // Compiler options: -doc:dummy.xml -warn:2 -warnaserror
4
5 namespace Testing
6 {
7         public class Test
8         {
9                 public static void Main ()
10                 {
11                 }
12
13                 /// <param>anonymous</param>
14                 public void Foo (int i) {}
15
16                 /// <param name='i'>correct</param>
17                 /// <param name='i'>duplicate</param>
18                 public void Bar (int i) {}
19         }
20 }