[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1589.cs
1 // CS1589: Unable to include XML fragment `/root/@attr' of file `cs1589.inc'. The specified node cannot be inserted as the valid child of this node, because the specified node is the wrong type
2 // Line: 15
3 // Compiler options: -doc:dummy.xml -warn:1 -warnaserror
4
5 namespace Testing
6 {
7    /// <include file='cs1589.inc' path='/foo' />
8    public class Test
9    {
10         public static void Main ()
11         {
12         }
13
14         /// <include file='cs1589.inc' path='/root/@attr'/>
15         public string S3;
16    }
17 }
18