blob: b634216ae1e7d94248417f7297275b6fe79b794d (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS0729: Cannot forward type `C' because it is defined in this assembly
// Line: 7
using System;
using System.Runtime.CompilerServices;
[assembly: TypeForwardedTo(typeof (C))]
class C
{
}
|