Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
parser
/
tests
/
method_decl_on_non_local_array.out
5
lines
·
5
sloc
·
277 bytes
·
dd93b56b6893ef96864e395d5873c26a9b5d8e3e
Raw
1
vlib/v/parser/tests/method_decl_on_non_local_array.vv:1:7: error: cannot define new methods on non-local type []int. Define an alias and use that instead like `type AliasName = []int`
2
1 | fn (a []int) get_number() int {
3
| ~~~~~
4
2 | return 1
5
3 | }
6