Merge pull request #1066 from esdrubal/bug19313
[mono.git] / mcs / errors / cs0103-14.cs
1 // C0103: The name `s' does not exist in the current context
2 // Line: 7
3
4 class Test(string s)
5 {
6         public Test ()
7                 : this (s)
8         {
9         }
10 }