Files
linux-packaging-mono/mcs/errors/cs0430.cs

14 lines
186 B
C#
Raw Normal View History

// CS0430: The extern alias `dontdefined' was not specified in -reference option
// Line: 4
extern alias dontdefined;
using System;
public class Tester
{
static void Main ()
{
}
}