aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/python/aligned_indent.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/indent/python/aligned_indent.py')
-rw-r--r--tests/indent/python/aligned_indent.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/indent/python/aligned_indent.py b/tests/indent/python/aligned_indent.py
new file mode 100644
index 000000000..2a4b827f4
--- /dev/null
+++ b/tests/indent/python/aligned_indent.py
@@ -0,0 +1,11 @@
+def aligned_indent(arg1,
+ arg2):
+ pass
+
+aligned_indent(1,
+ 2)
+
+
+aligned_indent(1,
+ 2
+ )