aboutsummaryrefslogtreecommitdiff
path: root/examples/gradle/dokka-multiplatform-example/src/jvmMain/kotlin/shouldbesuppressed/supp.kt
blob: 21dca5661c27e79875fb63122be1050a4e31efbc (plain)
1
2
3
4
5
6
7
8
9
10
11
package shouldbesuppressed

/**
 * This function should not be visible
 */
fun thatShouldNotBeVisible(): String = "oops"

/**
 * This class should not be visible
 */
class DontLookAtMe(val stealth: Int = 9001)