Files
c3c/test/test_suite/any/interface_name_shadow.c3
2025-07-01 20:08:46 +02:00

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()
{
}