mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
11 lines
106 B
V
11 lines
106 B
V
struct Struct<T> {
|
|
value int
|
|
}
|
|
|
|
interface Interface<T> {
|
|
method() T
|
|
}
|
|
|
|
s := Struct{7}
|
|
i := Interface(s)
|