Merge branch 'master' into msbuilddll2
[mono.git] / mcs / errors / cs0731.cs
1 // CS0731: The type forwarder for type `A' in assembly `CS0731-2-lib, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' has circular dependency
2 // Line: 9
3 // Compiler options: -r:CS0731-1-lib.dll -r:CS0731-2-lib.dll
4
5 class Test
6 {
7         static void Main ()
8         {
9                 new A ();
10         }
11 }