summaryrefslogtreecommitdiff
path: root/test/pending/pos/bug579.scala
blob: 9b4575835bc94d14f67fd2fbd8f12c2b67fa01ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package my.webapp.bean.stuff;

import scala.reflect.BeanProperty

class MyBean {
  [BeanProperty]
  var frombulizer: String = _;
}

object Test extends Application {

  val x = new MyBean;
  x.frombulizer = "hello"

}