File: unit-returns-value.scala

package info (click to toggle)
scala 2.11.12-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 62,924 kB
  • sloc: javascript: 28,808; java: 13,415; xml: 3,135; sh: 1,620; python: 756; makefile: 38; awk: 36; ansic: 6
file content (32 lines) | stat: -rw-r--r-- 419 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
object Test {
  def f {
    var b = false
    if (b) return 5
  }

  // no warning
  def g {
    return println("hello")
  }
}

class UnusedValues {
  var i1 = 2
  val i2 = 2
  lazy val i3 = 2
  object i4 { }
  def i5 = 2
  final def i6 = 2

  def x = {
    i1 // warn
    i2 // warn
    i3 // no warn
    i4 // no warn
    i5 // no warn
    i6 // could warn someday, if i6 returned 2.type instead of Int

    5
  }
}