aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/codeBlockNoHtmlEscape.kt
blob: 5f48b39cbfaae7241baa604c39b6000e8c945213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/**
 * Try to make this check pass
 * ```
 * if(1 > 2)
 * ```
 * Or just piece of html
 * ```
 * <p>1 = 3</p>
 * ```
 */
fun hackTheArithmetic(){
    valueOf(1) {
        set(3)
    }
}