This commit is contained in:
Andrey Akinshin 2016-08-13 02:22:44 +03:00
Родитель 04f7364e2e
Коммит a9403a9693
2 изменённых файлов: 5 добавлений и 0 удалений

Просмотреть файл

@ -2,6 +2,9 @@
namespace BenchmarkDotNet.Toolchains
{
/// <summary>
/// Build a benchmark program with the Roslyn compiler.
/// </summary>
public class RoslynToolchain : Toolchain
{
internal RoslynToolchain() : base("Classic", new RoslynGenerator(), new RoslynBuilder(), new Executor())

Просмотреть файл

@ -26,6 +26,8 @@ namespace BenchmarkDotNet.Tests
Assert.Throws<NotSupportedException>(() => CodeGenerator.Generate(benchmark));
}
#pragma warning disable CS1998
[Benchmark]
public async void AsyncVoidMethod() { }
}