Index: tests/corelib/from_environment_const_type_test.dart |
diff --git a/tests/corelib/from_environment_const_type_test.dart b/tests/corelib/from_environment_const_type_test.dart |
index bb011ff5a6b3204afcc5f87ff47f997c48065062..9d5ed73db570adf8bd834ebe843c6f64196ac3da 100644 |
--- a/tests/corelib/from_environment_const_type_test.dart |
+++ b/tests/corelib/from_environment_const_type_test.dart |
@@ -9,30 +9,30 @@ class Foo {} |
const |
bool /// 01: ok |
sra1
2017/03/21 01:43:46
//
Jacob
2017/03/21 02:25:34
Done.
|
- int /// 02: static type warning, checked mode compile-time error |
+ int // /// 02: static type warning, checked mode compile-time error |
String /// 03: static type warning, checked mode compile-time error |
- Foo /// 04: static type warning, checked mode compile-time error |
+ Foo // /// 04: static type warning, checked mode compile-time error |
a = const bool.fromEnvironment('a'); |
const |
bool /// 05: ok |
- int /// 06: static type warning, checked mode compile-time error |
+ int // /// 06: static type warning, checked mode compile-time error |
String /// 07: static type warning, checked mode compile-time error |
- Foo /// 08: static type warning, checked mode compile-time error |
+ Foo // /// 08: static type warning, checked mode compile-time error |
b = const bool.fromEnvironment('b'); |
const |
bool /// 09: static type warning, checked mode compile-time error |
- int /// 10: ok |
+ int // /// 10: ok |
String /// 11: static type warning, checked mode compile-time error |
- Foo /// 12: static type warning, checked mode compile-time error |
+ Foo // /// 12: static type warning, checked mode compile-time error |
c = const int.fromEnvironment('c'); |
const |
bool /// 13: static type warning, checked mode compile-time error |
- int /// 14: static type warning, checked mode compile-time error |
+ int // /// 14: static type warning, checked mode compile-time error |
String /// 15: ok |
- Foo /// 16: static type warning, checked mode compile-time error |
+ Foo // /// 16: static type warning, checked mode compile-time error |
d = const String.fromEnvironment('d'); |
main() { |