[System] UriKind.RelativeOrAbsolute workaround.
[mono.git] / mcs / errors / cs0516-3.cs
1 // CS0516: Constructor `Sample.Sample()' cannot call itself
2 // Line: 6
3
4 struct Sample {
5         public Sample ()
6                 : this ()
7         {
8         }
9 }