summaryrefslogtreecommitdiff
path: root/test/files/pos/exceptions.scala
blob: 93140ddbbe8844114b98a3cc91185066db563869 (plain) (blame)
1
2
3
4
5
6
module test {

  def error[a](x: String):a = new java.lang.RuntimeException(x) throw;

  def main = error("hi!");
}