Merge pull request #3565 from vargaz/no-free-imt-thunks
[mono.git] / mcs / errors / cs0165-19.cs
1 // CS0165: Use of unassigned local variable `s'
2 // Line: 10
3 // Compiler options: -r:CS0165-19-lib.dll
4
5 class Program
6 {
7         static void Main ()
8         {
9                 S s;
10                 s.Test ();
11         }
12 }