-
Notifications
You must be signed in to change notification settings - Fork 28
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
co19/LanguageFeatures/Constructor-tear-offs/equality_A03_t05 #1210
Comments
@alexmarkov thank you. Typo fixed |
copybara-service bot
pushed a commit
to dart-lang/sdk
that referenced
this issue
Oct 14, 2021
2021-10-14 [email protected] dart-lang/co19#1207. Constructor call tests added 2021-10-13 [email protected] Fixes dart-lang/co19#1207. Implementing Enum tests added 2021-10-13 [email protected] Fixes dart-lang/co19#1222. Change the test to expect correct behaviour 2021-10-12 [email protected] More fix for dart-lang/co19#523: one more Language/Metadata test which use reflection moved to LibTests/mirrors tests. 2021-10-12 [email protected] More fix for dart-lang/co19#523: one more Language/Metadata test which use reflection moved to LibTests/mirrors tests. 2021-10-12 [email protected] Remove extra `be` (dart-lang/co19#1220) 2021-10-12 [email protected] dart-lang/co19#1207. More enhanced enums tests grammar tests added 2021-10-12 [email protected] Remove extra `be` (dart-lang/co19#1217) 2021-10-12 [email protected] Remove extra `be` (dart-lang/co19#1216) 2021-10-12 [email protected] Remove extra `be` (dart-lang/co19#1214) 2021-10-12 [email protected] Remove extra `be` (dart-lang/co19#1215) 2021-10-11 [email protected] Remove extra `the` (dart-lang/co19#1213) 2021-10-11 [email protected] dart-lang/co19#1207. More enhanced enums tests grammar tests added 2021-10-11 [email protected] Fixes dart-lang/co19#1212. Use correct instance for the comparison 2021-10-08 [email protected] dart-lang/co19#1207. More grammar tests added and experimental flag added 2021-10-07 [email protected] dart-lang/co19#1207. Some grammar tests added 2021-10-06 [email protected] Fixes dart-lang/co19#1210. Typo fixed Cq-Include-Trybots: dart/try:analyzer-nnbd-linux-release-try,dart2js-nnbd-linux-x64-chrome-try,ddc-nnbd-linux-release-chrome-try,front-end-nnbd-linux-release-x64-try,vm-kernel-nnbd-linux-release-x64-try,vm-kernel-precomp-nnbd-linux-release-x64-try Change-Id: I29e9f5460540e09e46fb13820bc9a3fe28914d65 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/216665 Reviewed-by: Erik Ernst <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The expectation
co19/LanguageFeatures/Constructor-tear-offs/equality_A03_t05.dart
Line 30 in 3f79167
seems to be incorrect because
f1_3
andf1_5
are instantiations of the same local functionlocalFunction1
, butf1_1
andf1_3
cannot be equal, becausef1_1
is a generic uninstantiatedlocalFunction1
andf1_3
is instantiatedlocalFunction1<X>
.Correct expectation would be
The text was updated successfully, but these errors were encountered: