aboutsummaryrefslogtreecommitdiff
path: root/tests/disabled/macro/run/t7008-scala-defined/ScalaClassWithCheckedExceptions_1.scala
blob: 7783c873ecff033273be559b0e5bc69cee1e52b0 (plain) (blame)
1
2
3
4
5
6
class ScalaClassWithCheckedExceptions_1[E1 <: Exception] @throws[NullPointerException]("") () {
  @throws[E1]("") def bar() {}
  @throws[IllegalStateException]("") def baz(x: Int) {}
  // FIXME: SI-7066
  // @throws[E2]("") def foo[E2 <: Exception] {}
}