<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1657</ErrorName>
  <Examples>
    <string>// CS1657: Cannot pass `i' as a ref or out argument because it is a `foreach iteration variable'
// Line: 9

class E
{
    public E (int[] args)
    {
        foreach (int i in args)
            Init (ref i);
    }
    
    void Init (ref int val) {}
       
}
</string>
    <string>// CS1657: Cannot pass `m' as a ref or out argument because it is a `using variable'
// Line: 11

using System.IO;

class E
{
    public E (int[] args)
    {
	using (MemoryStream m = new MemoryStream ()){
            Init (out m);
	}
    }
    
    void Init (out MemoryStream val)
    {
	val = null;
    }
}
</string>
  </Examples>
</ErrorDocumentation>