-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[tests & chore] added a changelog and fixed functions without return …
…stmt in tests
- Loading branch information
1 parent
4c00772
commit 4e94a38
Showing
4 changed files
with
9 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# 更新日志 | ||
|
||
## 2024-4-27 | ||
|
||
- 修正了 lab1 测试中 `func_array1.sy` 符合语法但不符合语义的问题 [commit#4c00772b](https://git.zju.edu.cn/accsys/accipit/-/commit/4c00772bb3334f5e918214bec2459cd16a374d3c) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,5 @@ int b = 5; | |
int main(){ | ||
int a = 5; | ||
putint(a + b); | ||
return 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
int main() { | ||
int a = 1, b = a; | ||
return 0; | ||
} |