1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

fix tests

This commit is contained in:
S-YOU
2019-06-27 02:03:35 +09:00
committed by Alexander Medvednikov
parent 2ca6859982
commit d998313bb1
6 changed files with 9 additions and 7 deletions

View File

@ -33,7 +33,7 @@ struct Vec3 {
z f32
}
fn vec3(x, y, z f32) Vec3 {
pub fn vec3(x, y, z f32) Vec3 {
res := Vec3 {
x: x,
y: y,