Fix wrong "InlineProperties are unsupported at this language level" error on inline functions when inline properties are disabled

This commit is contained in:
Michael Bogdanov
2016-09-07 15:47:21 +03:00
parent 3ad451e33e
commit 8d2ffb2dab
4 changed files with 41 additions and 1 deletions
@@ -0,0 +1,16 @@
// !DIAGNOSTICS: -NOTHING_TO_INLINE
// !LANGUAGE: -InlineProperties
inline fun String.test() {
}
inline fun test() {
}
class A {
inline fun String.test() {
}
inline fun test() {
}
}