diff --git a/vlib/v/tests/translated_test.v b/vlib/v/tests/translated_test.v index f4149c6ae7..ecdfe94f5c 100644 --- a/vlib/v/tests/translated_test.v +++ b/vlib/v/tests/translated_test.v @@ -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 +}