mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 20:11:17 +00:00
16 lines
214 B
Plaintext
16 lines
214 B
Plaintext
import std::io;
|
|
|
|
interface Abc
|
|
{
|
|
fn void type(); // #error: would shadow the built-in property '.type'
|
|
}
|
|
|
|
interface Bcd
|
|
{
|
|
fn void ptr(); // #error: would shadow the built-in property '.ptr'
|
|
}
|
|
|
|
fn void main()
|
|
{
|
|
}
|