Support transient, strictfp and synchronized flags

#KT-4377 Fixed
This commit is contained in:
Andrey Breslav
2014-06-17 20:17:10 +04:00
parent f2bc26888c
commit 512e4cb75e
10 changed files with 111 additions and 20 deletions
@@ -0,0 +1,10 @@
volatile var vol = 1
transient val tra = 1
strictfp fun str() {}
synchronized fun sync() {}
// 0 kotlin/jvm/volatile
// 0 kotlin/jvm/transient
// 0 kotlin/jvm/strictfp
// 0 kotlin/jvm/synchronized
@@ -1,3 +0,0 @@
volatile val foo: Int = 1
// 0 kotlin/volatile