File tree Expand file tree Collapse file tree 6 files changed +53
-48
lines changed Expand file tree Collapse file tree 6 files changed +53
-48
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ members = [
2727resolver = " 2"
2828
2929[workspace .package ]
30- version = " 1.2.1 "
30+ version = " 1.2.2 "
3131edition = " 2021"
3232# Remember to update clippy.toml as well
3333rust-version = " 1.83"
@@ -191,7 +191,7 @@ foundry-linking = { path = "crates/linking" }
191191foundry-block-explorers = { version = " 0.13.3" , default-features = false }
192192foundry-compilers = { version = " 0.14.0" , default-features = false }
193193foundry-fork-db = " 0.12"
194- solang-parser = { version = " =0.3.8 " , package = " foundry-solang-parser" }
194+ solang-parser = { version = " =0.3.9 " , package = " foundry-solang-parser" }
195195solar-parse = { version = " =0.1.2" , default-features = false }
196196solar-sema = { version = " =0.1.2" , default-features = false }
197197
Original file line number Diff line number Diff line change 11struct S {
22 uint256 error;
3- // uint256 layout;
3+ uint256 layout;
44 uint256 at;
55}
66// uint256 transient;
77
88function f() {
99 uint256 error = 0;
10- // uint256 layout = 0;
10+ uint256 layout = 0;
1111 uint256 at = 0;
1212 // uint256 transient = 0;
1313
@@ -17,25 +17,26 @@ function f() {
1717 // transient = 0;
1818
1919 S memory x = S({
20+ // format
2021 error: 0,
21- // layout: 0,
22+ layout: 0,
2223 at: 0
2324 });
2425 // transient: 0
2526
2627 x.error = 0;
27- // x.layout = 0;
28+ x.layout = 0;
2829 x.at = 0;
2930 // x.transient = 0;
3031
3132 assembly {
3233 let error := 0
33- // let layout := 0
34+ let layout := 0
3435 let at := 0
3536 // let transient := 0
3637
3738 error := 0
38- // layout := 0
39+ layout := 0
3940 at := 0
4041 // transient := 0
4142 }
Original file line number Diff line number Diff line change 11struct S {
22 uint256 error;
3- // uint256 layout;
3+ uint256 layout;
44 uint256 at;
55 // uint256 transient;
66}
77
88function f() {
99 uint256 error = 0;
10- // uint256 layout = 0;
10+ uint256 layout = 0;
1111 uint256 at = 0;
1212 // uint256 transient = 0;
1313
@@ -17,25 +17,26 @@ function f() {
1717 // transient = 0;
1818
1919 S memory x = S({
20+ // format
2021 error: 0,
21- // layout: 0,
22+ layout: 0,
2223 at: 0
2324 // transient: 0
2425 });
2526
2627 x.error = 0;
27- // x.layout = 0;
28+ x.layout = 0;
2829 x.at = 0;
2930 // x.transient = 0;
3031
3132 assembly {
3233 let error := 0
33- // let layout := 0
34+ let layout := 0
3435 let at := 0
3536 // let transient := 0
3637
3738 error := 0
38- // layout := 0
39+ layout := 0
3940 at := 0
4041 // transient := 0
4142 }
You can’t perform that action at this time.
0 commit comments