Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
printing
/
print_reference_function_test.v
7
lines
·
6
sloc
·
97 bytes
·
6488041a749df9762348d019c4223908c476f2e2
Raw
1
fn
foo() {
2
}
3
4
fn
test_print_reference_function() {
5
println(&foo)
6
assert
'${&foo}'
==
'fn ()'
7
}
8