[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0177-3.cs
1 // CS0177: The out parameter `f' must be assigned to before control leaves the current method
2 // Line: 5
3
4 class C {
5         public static void test3 (out float f)
6         {
7                 try {
8                         f = 8.53F;
9                 } catch {
10                         return;
11                 }
12         }
13 }
14