Xamarin Public Jenkins (auto-signing) 6db692b74b Imported Upstream version 5.10.0.78
Former-commit-id: 46737382176d7b811604042c613d5df6eef74f33
2018-01-31 19:21:06 +00:00

13 lines
247 B
C#

// CS8346: Cannot convert a stackalloc expression of type `byte' to type `System.Span<int>'
// Line: 11
// Compiler options: -langversion:7.2
using System;
class X
{
public static void Main ()
{
Span<int> stackSpan = stackalloc byte[1];
}
}