dotnet-installer/test/compile/failing/SimpleCompilerError/Program.cs
Andrew Stanton-Nurse 1d76b2846c package up DNX in the tar.gz
includes a smoke test for verifying that the output can be used to build
also includes a checked-in CoreCLR in order to work around CoreCLR issue
2015-10-28 10:32:30 -07:00

12 lines
179 B
C#

using System;
namespace TestApp
{
public class Program
{
public static void Main(string[] args)
{
this will not compile!
}
}
}