[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
Re: [Vala] RE : forward déclaration
- From: picca <picca synchrotron-soleil Fr>
- To: "Jared Moore" <jaredm gmx com>
- Cc: vala-list gnome org
- Subject: Re: [Vala] RE : forward déclaration
- Date: Mon, 4 Aug 2008 08:51:27 +0200
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]