Files
c3c/test/test_suite/slices/array_to_const_err.c3

9 lines
135 B
Plaintext

module test;
import std;
fn void main()
{
char[?] z = { 1, 2 };
char[] y = z; // #error: Conversions from arrays or vectors
}