2010-05-19 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0177.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;