[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1589-2.cs
1 // CS1589: Unable to include XML fragment `/foo/bar' of file `there-is-no-such-file'. Could not find file "*PATH*/there-is-no-such-file"
2 // Line: 12
3 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror
4
5 namespace Testing
6 {
7    /// blah
8    public class Test
9    {
10         // warning
11         /// <include file='there-is-no-such-file' path='/foo/bar' />
12         public void Baz (int x)
13         {
14         }
15    }
16 }
17