Skip to content

Commit 01c5539

Browse files
committed
add a couple more examples
1 parent ba869b4 commit 01c5539

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
int main() {
2+
foo:
3+
/* auto x = 1; */
4+
goto foo;
5+
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/* using auto in a comment */
2+
int main() {
3+
auto x = 1;
4+
auto y = 2;
5+
}

0 commit comments

Comments
 (0)