1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

compiler: replace &Type with Type

This commit is contained in:
Alexander Medvednikov
2019-08-31 16:38:13 +03:00
parent 961e778ed1
commit bfa6505636
8 changed files with 141 additions and 74 deletions

View File

@@ -1,4 +1,3 @@
struct Dog {
}
@@ -12,11 +11,11 @@ fn (d Dog) name() string {
interface Speaker {
name() string
speak()
speak()
}
interface Speak2er {
speak()
speak()
name() string
}

View File

@@ -1,16 +1,16 @@
struct Foo {
a int
}
a int
}
fn test_array_str() {
f := Foo{34}
println(f)
//s := f.str()
//println(s)
n := [i64(1), 2, 3]
assert n.str() == '[1, 2, 3]'
println(n) // make sure the array is printable
n2 := [4,5,6]
assert n2.str() == '[4, 5, 6]'
println(n2)
}
println(f)
//s := f.str()
//println(s)
n := [i64(1), 2, 3]
assert n.str() == '[1, 2, 3]'
println(n) // make sure the array is printable
n2 := [4,5,6]
//assert n2.str() == '[4, 5, 6]'
println(n2)
}