[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

Re: [Vala] RE : forward déclaration



Le Sat, 2 Aug 2008 11:08:33 +1000,
"Jared Moore" <jaredm gmx com> a écrit :

> Hi,
> 
> Please make a minimal test case and file a bug in bugzilla. :)

Here the minimal test case.

compile with
valac -C a.vala b.vala

good luck

Frederic
public struct A {
	public double a;
	public void set(B b)
	{
		this.a = b.b;
	}
}
public struct B {
	public double b;
	public void set(A a)
	{
		this.b = a.a;
	}
}


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]