repo.or.cz
/
vala-lang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
libgda-4.0, gedit-2.20: Fix gedit typo and GdaXaTransactionId.data
[vala-lang.git]
/
tests
/
objects
/
bug620706.vala
blob
7ac4bc90bd616417e64a4ecd08abb2324f1ded86
1
class
Foo
:
Object
{
2
public
Value val
{
get
;
set
; }
3
}
4
5
struct
Bar
{
6
int
dummy
;
7
}
8
9
void
main
() {
10
var
f
=
new
Foo
();
11
var
b
=
Bar
();
12
f
.
val
=
b
;
13
}