Properly initialize a rgctx template. Fixes bxc #1147.
[mono-project.git] / mcs / errors / cs0177-9.cs
blob91dde9c8a74bb49288c0467756d83be171a13f2e
1 // CS0177: The out parameter `output' must be assigned to before control leaves the current method
2 // Line: 10
4 class Test
6 delegate T Creator<T> ();
8 static bool TryAction<T> (Creator<T> creator, out T output) where T : struct
10 return false;