Files
c3c/test/test_suite/methods/methods_defined_twice.c3

32 lines
368 B
C

module foo;
struct Bar
{
int x;
}
module baz;
import foo;
import std::io;
fn void foo::Bar.test(Bar *bar)
{
io::printn("Inside of baz::Bar.test");
}
fn void Bar.test(Bar *bar) // #error: This method is already defined for
{
io::printn("Inside of baz::Bar.test");
}
module abc;
import foo;
import baz;
fn void main()
{
Bar bar;
bar.test();
}