Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0177-9.cs
1 // CS0177: The out parameter `output' must be assigned to before control leaves the current method
2 // Line: 10
3
4 class Test
5 {
6         delegate T Creator<T> ();
7
8         static bool TryAction<T> (Creator<T> creator, out T output) where T : struct
9         {
10                 return false;
11         }
12 }