Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • shchen/cs320
  • raveendr/cs320
  • mwojnaro/cs320
3 results
Show changes
Showing
with 465 additions and 0 deletions
This diff is collapsed.
This diff is collapsed.
object BasicError
def throwError(msg: String): Unit = {
error(msg)
}
throwError("basic error test")
end BasicError
object Division
1/0
end Division
object Locals
def foo(i: Int(32)): Int(32) = {
val i: Int(32) = 0;
if (i == 0) { error("") }
else { 0 }
}
foo(1)
end Locals
object MatchError
abstract class Foo
case class Bar() extends Foo
case class Baz() extends Foo
Bar() match { case Baz() => () }
end MatchError
test finished
\ No newline at end of file