Add: struct fields to the test of issue 256

This commit is contained in:
sobaya 2019-07-30 23:04:02 +09:00
parent ac61efe767
commit 1024f16715
3 changed files with 9 additions and 3 deletions

View File

@ -1,4 +1,6 @@
void foo()
{
S s = {a: 3};
S s1 = {a: 3};
S s2 = {a: 3, b : "test string"};
S s3 = {a: 3, b : "test string", c : {x: 3.14, y : 3 + 4}};
}

View File

@ -1,4 +1,6 @@
void foo()
{
S s = { a: 3 };
S s1 = { a: 3 };
S s2 = { a: 3, b:"test string" };
S s3 = { a: 3, b:"test string", c: {x: 3.14, y: 3 + 4} };
}

View File

@ -1,3 +1,5 @@
void foo() {
S s = {a: 3};
S s1 = {a: 3};
S s2 = {a: 3, b : "test string"};
S s3 = {a: 3, b : "test string", c : {x: 3.14, y : 3 + 4}};
}