<?xml version="1.0"?>
<ErrorDocumentation xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <ErrorName>CS8346</ErrorName>
  <Examples>
    <string>// CS8346: Cannot convert a stackalloc expression of type `byte' to type `System.Span&lt;int&gt;'
// Line: 11
// Compiler options: -langversion:7.2

using System;

class X
{
	public static void Main ()
	{
		Span&lt;int&gt; stackSpan = stackalloc byte[1];
	}
}</string>
  </Examples>
</ErrorDocumentation>