aboutsummaryrefslogtreecommitdiff
path: root/core/testdata/format/codeBlockNoHtmlEscape.kt
diff options
context:
space:
mode:
Diffstat (limited to 'core/testdata/format/codeBlockNoHtmlEscape.kt')
-rw-r--r--core/testdata/format/codeBlockNoHtmlEscape.kt15
1 files changed, 15 insertions, 0 deletions
diff --git a/core/testdata/format/codeBlockNoHtmlEscape.kt b/core/testdata/format/codeBlockNoHtmlEscape.kt
new file mode 100644
index 00000000..5f48b39c
--- /dev/null
+++ b/core/testdata/format/codeBlockNoHtmlEscape.kt
@@ -0,0 +1,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)
+ }
+} \ No newline at end of file