A couple of tests for default libraries.

This commit is contained in:
Alexander Gorshenev
2017-09-19 16:19:22 +03:00
committed by alexander-gorshenev
parent 27f7e4263b
commit f1c3e866b4
4 changed files with 23 additions and 0 deletions
@@ -0,0 +1,7 @@
import posix.*
fun main(args: Array<String>) {
// Just check the typealias is in scope.
val ptrdiff: ptrdiff_t = 0L
println("ptrdiff = $ptrdiff")
}