[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git] / mcs / errors / cs0177-10.cs
blob000f8032e123cf44f36f06f66483b4e83ecd2078
1 // CS0177: The out parameter `output' must be assigned to before control leaves the current method
2 // Line: 8
4 class Test
6 static bool TryAction<T> (out T output)
8 return false;
11 static void Main ()
13 Test value;
14 TryAction<Test> (out value);