6db692b74b
Former-commit-id: 46737382176d7b811604042c613d5df6eef74f33
13 lines
247 B
C#
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];
|
|
}
|
|
} |