summaryrefslogtreecommitdiff
path: root/test/files/neg/ambiguous-float-dots.scala
blob: 58cc1b70be9fc49efcf715b737fd5e7205fc485a (plain) (blame)
1
2
3
4
5
6
7
8
9
class A {
  val x0 = 5.
  val x1 = 5.f
  val y0 = 055

  1.+(2)
  1. + 2
  1 + 2
}