[mini] Fix test compiling when running !MOBILE
[mono.git] / mcs / errors / cs0177-10.cs
1 // CS0177: The out parameter `output' must be assigned to before control leaves the current method
2 // Line: 8
3
4 class Test
5 {
6         static bool TryAction<T> (out T output)
7         {
8                 return false;
9         }
10
11         static void Main ()
12         {
13                 Test value;
14                 TryAction<Test> (out value);
15         }
16 }