mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
9 lines
135 B
Plaintext
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
|
|
}
|