summaryrefslogtreecommitdiff
path: root/test/partest-tests/run/timeout.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/partest-tests/run/timeout.scala')
-rw-r--r--test/partest-tests/run/timeout.scala5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/partest-tests/run/timeout.scala b/test/partest-tests/run/timeout.scala
new file mode 100644
index 0000000000..91417b39ab
--- /dev/null
+++ b/test/partest-tests/run/timeout.scala
@@ -0,0 +1,5 @@
+object Test {
+ def main(args: Array[String]): Unit = {
+ Thread.sleep(10000000)
+ }
+}