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:
@ -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
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user