-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
f01dab1e
committed
Oct 12, 2023
1 parent
692aa0d
commit 2d1cd59
Showing
4 changed files
with
110 additions
and
15 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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
fn main() { | ||
(1,); | ||
(/*test*/1,); | ||
(/*a*/1/*b*/,); | ||
(/*a*/1/*b*/, /*c*/2/*d*/, /*c*/2/*d*/); | ||
(/*a*/1/*b*/, /*c*/2/*d*/, /*c*/2/*d*/, /*e*/3/*f*/); | ||
|
||
(1/*1*/, 2/* 2*/); | ||
|
||
(/*a*/1/*b*/, /*c*/2/*d*/, /*c*/2/*d*/, /*e*/3/*f*/); | ||
|
||
// FIXME: | ||
( 1, /*test*/ ); | ||
} |
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,22 @@ | ||
fn main() { | ||
( 1, ); | ||
( /*test*/1, ); | ||
( /*a*/1/*b*/, ); | ||
( /*a*/1/*b*/, /*c*/2/*d*/, /*c*/2/*d*/ ); | ||
( /*a*/1/*b*/, /*c*/2/*d*/, /*c*/2/*d*/, /*e*/3/*f*/ ); | ||
|
||
( 1 /*1*/ , 2 /* 2*/ ); | ||
|
||
( | ||
/*a*/ | ||
1 | ||
/*b*/, | ||
/*c*/ | ||
2/*d*/, | ||
/*c*/2/*d*/, | ||
/*e*/3/*f*/ | ||
); | ||
|
||
// FIXME: | ||
( 1, /*test*/ ); | ||
} |