Vidya

Results 20 issues of Vidya

@amherag commented on Feb 18 **Is your feature request related to a problem? Please describe.** If we ever need to assert that two argument's byte representations are the same regardless...

@asahi3g commented on Mar 12 **To Reproduce** ``` package main func main()() { var i i32 = 4 var s str = sprintf("%d", i++) printf("'%s'\n", s) test(s, "4", "") }...

@asahi3g commented on Mar 12 **To Reproduce** ``` package main func foo()() { } func main() { for foo() { printf("true\n") } } ``` **Expected behavior** Compilation error **Screenshots** ```...

@asahi3g commented on Mar 12 **To Reproduce** ``` package main type too struct { b bool } func main()() { var t0 too // comment these 2 lines and the...

@asahi3g commented on Mar 12 **To Reproduce** ``` package main func main()() { var i i32 for true { i = 55 break } printf("i : %d\n", i) test(i, 55,...

@asahi3g commented on May 10 **Describe the bug** Cx is not supporting short-circuit evaluation **To Reproduce** ``` package main var count i32 func True(i i32) (out bool) { out =...

@asahi3g commented on Jul 3 **To Reproduce** ``` package main func fooi(slice []i32) { test(len(slice), 3, "") test(slice[0], 1, "") test(slice[1], 2, "") test(slice[2], 3, "") } func foos(slice []str)...

@asahi3g commented on Jul 3 **Describe the bug** Can't declare and inline initialize multiple variable from return values of a function call. **To Reproduce** ``` package main func foo()(i i32,...

@asahi3g commented on Jul 3 **To Reproduce** ``` package main func main()() { var si []i32 var psi *[]i32 = &si psi = append(psi, 4) panic(true, false, "must not compile")...

@asahi3g commented on Jul 3 **To Reproduce** ``` package main func main()() { printf("%s\n", -1) panic(true, false, "must not compile") } ``` **Expected behavior** Compilation error eg golang: `Printf format...