diff src/testdir/test3.in @ 7206:c6a7305972fe v7.4.912

commit https://github.com/vim/vim/commit/e01f4f86cef7bed3cb99b26f9f57d86f6eb5fe1a Author: Bram Moolenaar <Bram@vim.org> Date: Tue Nov 10 14:06:53 2015 +0100 patch 7.4.912 Problem: Wrong indenting for C++ constructor. Solution: Recognize ::. (Anhong)
author Christian Brabandt <cb@256bit.org>
date Tue, 10 Nov 2015 14:15:04 +0100
parents d3c57e7f489a
children 0bbbe99c8432
line wrap: on
line diff
--- a/src/testdir/test3.in
+++ b/src/testdir/test3.in
@@ -663,6 +663,13 @@ Constructor::Constructor(int a,
 {
 }
 
+A::A(int a, int b)
+: aa(a),
+bb(b),
+cc(c)
+{
+}
+
 class CAbc :
    public BaseClass1,
    protected BaseClass2