aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle/projects/it-configuration/src/main/kotlin/it/ClassWithUndocumentedDeclarations.kt
blob: 04d0cb1682f15378add72205d68a1e52161f809e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
package it

/**
 * The class itself is documented, but its methods are not
 *
 * This can be used to test configuration properties that work with undocumented declarations,
 * such as `reportUndocumented` and `failOnWarning`
 */
class ClassWithUndocumentedDeclarations {

    fun foo() {}
}