mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
13 lines
225 B
Plaintext
13 lines
225 B
Plaintext
// #target: macos-x64
|
|
module test;
|
|
import std;
|
|
|
|
fn void main()
|
|
{
|
|
DString y;
|
|
|
|
y ^= 1; // #error: Expected an integer here
|
|
y += 1.0; // #error: Expected a numeric type here
|
|
y += 1; // #error: Expected a numeric type here
|
|
}
|