summaryrefslogtreecommitdiff
path: root/test/files/run/t10037/shifty_1.scala
blob: 2f28da01ca29be23f76994663ad405188e719ce9 (plain) (blame)
1
2
3
4
5
6
7
package shifty

object X {
  @inline def f(i: Int): Int = i >> 1
  @inline def g(i: Int): Int = i >>> 1
}