Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(8)

Unified Diff: tests/language/switch_int_double_test.dart

Issue 25561002: Disallow double in case clauses and const map literal keys (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/language/switch_bad_case_test.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/switch_int_double_test.dart
===================================================================
--- tests/language/switch_int_double_test.dart (revision 28102)
+++ tests/language/switch_int_double_test.dart (working copy)
@@ -1,27 +0,0 @@
-// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-// Test reporting a compile-time error if case expressions do not all have
-// the same type.
-
-import "package:expect/expect.dart";
-
-void main() {
- Expect.equals(100, test(1.0));
- Expect.equals(75, test(0.75));
- Expect.equals(null, test(0.5));
-}
-
-int test(num ratio) {
- switch (ratio) {
- case 0.75:
- return 75;
- case 1.0:
- return 100;
- case 2: /// 01: compile-time error
- return 200; /// 01: continued
- case 'foo': /// 02: compile-time error
- return 400; /// 02: continued
- }
-}
« no previous file with comments | « tests/language/switch_bad_case_test.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698