comparison src/testdir/test3.ok @ 4187:171234e02b1e v7.3.845

updated for version 7.3.845 Problem: Enum indenting is not tested. Solution: Add tests. (Hong Xu)
author Bram Moolenaar <bram@vim.org>
date Thu, 07 Mar 2013 13:21:32 +0100
parents c0c935956ac3
children ad005d0114c1
comparison
equal deleted inserted replaced
4186:7ffc704cb7c1 4187:171234e02b1e
304 yes = 0, 304 yes = 0,
305 no, 305 no,
306 maybe 306 maybe
307 } soppie; 307 } soppie;
308 308
309 public static enum
310 {
311 yes = 0,
312 no,
313 maybe
314 } soppie;
315
316 static private enum
317 {
318 yes = 0,
319 no,
320 maybe
321 } soppie;
322
309 { 323 {
310 int a, 324 int a,
311 b; 325 b;
312 } 326 }
313 327