<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS1649</ErrorName>
  <Examples>
    <string>// CS1649: Members of readonly field `B.a' cannot be passed ref or out (except in a constructor)
// Line: 13

class B
{
	public struct A
	{
	    public int val;
	}

	public readonly A a = new A ();
}

class C
{
    static void f (ref int i)
    {
	i = 44;
    }

    static void Main ()
    {
	B b = new B (); 
	f (ref b.a.val);
    }
}
</string>
  </Examples>
</ErrorDocumentation>