Files
linux-packaging-mono/mcs/errors/cs0246-20.cs

11 lines
234 B
C#
Raw Normal View History

// CS0246: The type or namespace name `C' could not be found. Are you missing an assembly reference?
// Line: 5
using C = Cks.Runtime.Data;
using BigInteger = C.BigInteger;
namespace Cks.Runtime.Data
{
public class BigInteger {}
}