Merge branch 'xml-fixes' of https://github.com/myeisha/mono into myeisha-xml-fixes
[mono-project.git] / mcs / errors / gcs0266.cs
blobd1bda2e31fbbd025b86fc7ff8c71fc50416ad18d
1 // CS0266: Cannot implicitly convert type `I' to `C'. An explicit conversion exists (are you missing a cast?)
2 // Line: 16
4 interface I
8 struct C : I
12 class X
14 static void Main (string[] args)
16 C c = default (I);