v2 / vlib / v / tests / interop_test.js.v
13 lines · 10 sloc · 249 bytes · a80bc2331450fc28c900097f8afafe173f161d27
Raw
1// vtest build: present_node?
2// Not real external functions, so we won't call them
3// We just want to make sure they compile
4
5struct Foo {}
6
7fn JS.e(a string, b ...string) int
8fn JS.f(a &Foo)
9fn JS.i(...string)
10
11fn test_compiles() {
12 assert true
13}
14