2010-06-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0177-3.cs
blob262dbdcd86e67105df2e4840167b4f947c84428d
1 // cs0177-3.cs: The out parameter `f' must be assigned to before control leaves the current method
2 // Line: 5
4 class C {
5 public static void test3 (out float f)
7 try {
8 f = 8.53F;
9 } catch {
10 return;