blob: 54b3adae82d6ea10bb66c527757628239cc1ca92 (
plain)
1
2
3
4
5
6
7
8
|
// CS0730: Cannot forward type `C.CC' because it is a nested type
// Line: 8
// Compiler options: -r:CS0730-lib.dll
using System;
using System.Runtime.CompilerServices;
[assembly: TypeForwardedTo(typeof (C.CC))]
|