14 lines
123 B
Plaintext
14 lines
123 B
Plaintext
unit okstat1;
|
|
|
|
static VALUE: i32 = 7;
|
|
|
|
fn get() -> &i32 {
|
|
return &VALUE;
|
|
}
|
|
|
|
fn test() -> i32 {
|
|
return get().^;
|
|
}
|
|
|
|
|