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

tests: remove needless import math in translated_test.v

This commit is contained in:
Delyan Angelov 2022-07-23 23:24:17 +03:00
parent d8b0df1a31
commit c63fed5393
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -1,6 +1,8 @@
[translated]
module main
import math
fn test_NotSnakeCaseFunction() {}
fn test_NotSnakeCaseFunction() {
assert true
assert 8 == 2 * 4
assert 2 * 3 == 6
}