v2 / vlib / v / tests / printing / print_reference_function_test.v
7 lines · 6 sloc · 97 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1fn foo() {
2}
3
4fn test_print_reference_function() {
5 println(&foo)
6 assert '${&foo}' == 'fn ()'
7}
8