[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]
[Vala] class definitions
- From: "Кутейников Дмитрий" <kuteynikov gmail com>
- To: vala-list gnome org
- Subject: [Vala] class definitions
- Date: Wed, 15 Oct 2008 22:05:40 +0400
I wrote this:
class Item
{
public uint8 x, y, zlevel;
public string location;
}
and got an error:
objects.vala:18.19-18.19: error: syntax error, expected declaration
public uint8 x, y, zlevel;
This code is correct:
class Item
{
public uint8 x;
public uint8 y;
public uint8 zlevel;
public string location;
}
So I cannot define fields with the same type in one line? Is it a bug?
[Date Prev][Date Next] [Thread Prev][Thread Next]
[Thread Index]
[Date Index]
[Author Index]