mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
10 lines
191 B
Plaintext
10 lines
191 B
Plaintext
// #target: macos-x64
|
|
import std;
|
|
fn int main()
|
|
{
|
|
asm
|
|
{
|
|
movl $eax, [$ax+$ecx]; // #error: Index register size (16) does not match base register size (32)
|
|
}
|
|
return 0;
|
|
} |