| Age | Commit message (Expand) | Author |
|---|---|---|
| 2014-07-19 | lua: updated from 5.1 to 5.3 work3 | lneto |
| 2013-10-16 | welcome lua(4), a devide driver that can create and control Lua states inside... | mbalmer |
/* $NetBSD: fmt_init.c,v 1.1 2022/04/24 10:36:37 rillig Exp $ */ /* * Tests for variable initializations. */ //indent input int global = { initializer }; int global = { initializer }; void example(void) { int local = { initializer }; int local = { initializer }; } //indent end //indent run -di0 // $ XXX: The spaces around the initializer are gone. int global = {initializer}; int global = { initializer }; void example(void) { // $ XXX: The spaces around the initializer are gone. int local = {initializer}; int local = { initializer }; } //indent end '>
| summaryrefslogtreecommitdiff |
| Age | Commit message (Expand) | Author |
|---|---|---|
| 2014-07-19 | lua: updated from 5.1 to 5.3 work3 | lneto |
| 2013-10-16 | welcome lua(4), a devide driver that can create and control Lua states inside... | mbalmer |