Files
c3c/test/test_suite/dynamic/same_method_twice.c3
2023-10-20 14:12:08 +02:00

12 lines
182 B
Plaintext

module test;
import std::io;
interface Abc
{
fn void test();
}
fn void Abc.hello(&self) {}
fn void Abc.hello(&self) {} // #error: This method is already defined
fn void main() {}