-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[libSyntax, tests] Preparations for verification of syntax tree on SILGen tests #16174
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
00604fb
05350cd
8c21ec6
3fd922a
7bbb5fa
dc3e43b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,6 @@ enum E<T>: Int { | |
} | ||
|
||
// CHECK-LABEL: sil hidden @$S22enum_generic_raw_value1FO | ||
enum F<T: ExpressibleByIntegerLiteral where T: Equatable>: T { | ||
enum F<T: ExpressibleByIntegerLiteral>: T where T: Equatable { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. (Not in this PR) We should consider accepting optional There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I spoke with Argyrios about this and we decided not to support libSyntax parsing of Swift 3. It is being deprecated anyway and we will probably not be able to provide the coverage we will for Swift 4. |
||
case A = 1 | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch!