diff options
-rw-r--r-- | Examples/test-suite/go/argcargvtest_runme.go | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Examples/test-suite/go/argcargvtest_runme.go b/Examples/test-suite/go/argcargvtest_runme.go index 31c56b8c0..3da3d76dd 100644 --- a/Examples/test-suite/go/argcargvtest_runme.go +++ b/Examples/test-suite/go/argcargvtest_runme.go @@ -13,7 +13,10 @@ func main() { panic(rs) } -// wrap.Mainv("hello", 1) // Fail compilation!! +// For dynamically typed languages we test this throws an exception or similar +// at runtime, but for Go this doesn't even compile (but we can't easily +// test for that here). +// wrap.Mainv("hello", 1) wrap.InitializeApp(largs) } |