forked from luna/jorts
16 lines
118 B
Text
16 lines
118 B
Text
|
|
||
|
struct A {
|
||
|
int a,
|
||
|
int b
|
||
|
}
|
||
|
|
||
|
struct B <- A {
|
||
|
int c
|
||
|
}
|
||
|
|
||
|
fn main () {
|
||
|
a := A{1, 2}
|
||
|
b := B{1, 2, 3}
|
||
|
}
|
||
|
|