TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs8346.cs
blob58e22a2ae7fabde2a9082f4352ec2fac63c316a2
1 // CS8346: Cannot convert a stackalloc expression of type `byte' to type `System.Span<int>'
2 // Line: 11
3 // Compiler options: -langversion:7.2
5 using System;
7 class X
9 public static void Main ()
11 Span<int> stackSpan = stackalloc byte[1];