[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1922-2.cs
1 // CS1922: A field or property `System.Type' cannot be initialized with a collection object initializer because type `System.Type' does not implement `System.Collections.IEnumerable' interface
2 // Line: 13
3
4 using System;
5 using System.Xml.Serialization;
6
7 namespace test
8 {
9         public class Test
10         {
11                 static void Main ()
12                 {
13                         XmlSerializer xs = new XmlSerializer (typeof (string), new Type () { typeof (bool) });
14                 }
15         }
16 }
17