mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
parser: allow deref assign without parens pt2 update vlib
This commit is contained in:
@ -7,8 +7,8 @@ pub fn rand_u64(seed &u64) u64 {
|
||||
mut seed0 := seed
|
||||
unsafe{
|
||||
mut seed1 := *seed0
|
||||
seed1 += (wyp0)
|
||||
(*seed0) = seed1
|
||||
seed1 += wyp0
|
||||
*seed0 = seed1
|
||||
return wymum(seed1^wyp1, seed1)
|
||||
}
|
||||
return 0
|
||||
|
Reference in New Issue
Block a user