2005-06-29 Sureshkumar T <tsureshkumar@novell.com>
[mono.git] / mcs / errors / cs1657.cs
1 // cs1657.cs: Cannot pass 'i' as a ref or out argument because it is a 'foreach iteration variable'
2 // Line: 9
3
4 class E
5 {
6     public E (int[] args)
7     {
8         foreach (int i in args)
9             Init (ref i);
10     }
11     
12     void Init (ref int val) {}
13        
14 }