blob: 2e017b38321fea596f40a952f4e9bf5df342964e [file] [log] [blame]
Roman Elizarov1f74a2d2018-06-29 19:19:45 +03001/*
2 * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3 */
4
Vsevolod Tolstopyatov74bcc922018-05-03 20:07:54 +03005package cases.inline
6
7@PublishedApi
8internal fun exposedForInline() {}
9
10@PublishedApi
11internal class InternalClassExposed
12 @PublishedApi
13 internal constructor() {
14
15 @PublishedApi
16 internal fun funExposed() {}
17
18 // TODO: Cover unsupported cases: requires correctly reflecting annotations from properties
19 /*
20 @PublishedApi
21 internal var propertyExposed: String? = null
22
23 @JvmField
24 @PublishedApi
25 internal var fieldExposed: String? = null
26 */
27
28}