aboutsummaryrefslogtreecommitdiff
path: root/test/data/comments/directive.kt
diff options
context:
space:
mode:
Diffstat (limited to 'test/data/comments/directive.kt')
-rw-r--r--test/data/comments/directive.kt35
1 files changed, 0 insertions, 35 deletions
diff --git a/test/data/comments/directive.kt b/test/data/comments/directive.kt
deleted file mode 100644
index b27f5a48..00000000
--- a/test/data/comments/directive.kt
+++ /dev/null
@@ -1,35 +0,0 @@
-/**
- * Summary
- *
- * @sample example1
- * @sample example2
- * @sample X.example3
- * @sample X.Y.example4
- */
-val property = "test"
-
-fun example1(node: String) = if (true) {
- println(property)
-}
-
-fun example2(node: String) {
- if (true) {
- println(property)
- }
-}
-
-class X {
- fun example3(node: String) {
- if (true) {
- println(property)
- }
- }
-
- class Y {
- fun example4(node: String) {
- if (true) {
- println(property)
- }
- }
- }
-}