repo.or.cz
/
vala-gnome.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
vala: Allow read-only properties
[vala-gnome.git]
/
tests
/
structs
/
bug595587.vala
blob
84c055360c370b967eb24c79944cf338db13777a
1
struct
Foo
{
2
int
x
;
3
}
4
5
class
Bar
{
6
public
Foo? foo
{
7
set
{
8
bool
b
= (
value
==
null
);
9
}
10
}
11
}
12
13
void
main
() {
14
}