diff src/testdir/test3.in @ 6114:65b0974c5beb v7.4.395

updated for version 7.4.395 Problem: C indent is wrong below an if with wrapped condition followed by curly braces. (Trevor Powell) Solution: Make a copy of tryposBrace.
author Bram Moolenaar <bram@vim.org>
date Wed, 06 Aug 2014 17:44:14 +0200
parents 9a4efda75b5e
children c4cb95fb4c58
line wrap: on
line diff
--- a/src/testdir/test3.in
+++ b/src/testdir/test3.in
@@ -464,6 +464,14 @@ label:  if (asdf &&
 	asdfasdf
 }
 
+{
+for ( int i = 0;
+	i < 10; i++ )
+{
+}
+	i = 0;
+}
+
 class bob
 {
 	int foo() {return 1;}