[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1591-5.cs
1 // CS1591: Missing XML comment for publicly visible type or member `Testing.MyDelegate'
2 // Line: 9
3 // Compiler options: -doc:dummy.xml -warnaserror -warn:4
4
5 using System;
6
7 namespace Testing
8 {
9         public delegate void MyDelegate (object o, EventArgs e);
10 }