summaryrefslogtreecommitdiff
path: root/tests/indent/r/func.R
diff options
context:
space:
mode:
authorPedro Castro <aspeddro@gmail.com>2022-03-28 16:08:30 -0300
committerChristian Clason <christian.clason@uni-due.de>2022-03-29 08:43:38 +0200
commitcf9faaa0e3970e372c4ac2fe21912cb599e71863 (patch)
tree7ea3da7edf6f0cb228b386477bad098bd1eedbaa /tests/indent/r/func.R
parent3b974b7257516e4ea89d10dd9842b1035a540d7e (diff)
r(indents): fix brace_list alignment
Diffstat (limited to 'tests/indent/r/func.R')
-rw-r--r--tests/indent/r/func.R6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/indent/r/func.R b/tests/indent/r/func.R
index bc184dfb..2048dd87 100644
--- a/tests/indent/r/func.R
+++ b/tests/indent/r/func.R
@@ -10,3 +10,9 @@ foo <- function(x) {
)
)
}
+
+baz <- function(l) {
+ inner(l, function(x) {
+
+ })
+}