Skip to content

Commit

Permalink
Fix language_2/f_bounded_quantification2_test
Browse files Browse the repository at this point in the history
Change-Id: Ibb182e2ea89f3dd4790be659a69d6c58e333efb9
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/115779
Auto-Submit: Mayank Patke <fishythefish@google.com>
Reviewed-by: Leaf Petersen <leafp@google.com>
Commit-Queue: Mayank Patke <fishythefish@google.com>
  • Loading branch information
fishythefish authored and commit-bot@chromium.org committed Sep 6, 2019
1 parent 836f6de commit 40454f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/language_2/f_bounded_quantification2_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@

// Test for F-Bounded Quantification. Regression test for issue 9291.

class Entities<T extends ConceptEntity<T>> implements EntitiesApi {}
class Entities<T extends ConceptEntity<T>> implements EntitiesApi<T> {}

class ConceptEntity<T extends ConceptEntity<T>> implements EntityApi {}
class ConceptEntity<T extends ConceptEntity<T>> implements EntityApi<T> {}

abstract class EntityApi<T extends EntityApi<T>> {}

Expand Down

0 comments on commit 40454f0

Please sign in to comment.