about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAndrea Pretto <andrea.pretto@rawfish.it>2016-09-30 16:49:52 +0200
committerAndrea Pretto <andrea.pretto@rawfish.it>2016-09-30 16:49:52 +0200
commit5d9318c42c1df48f2b3b8bbbe82d96a9c2c555fa (patch)
treef0cb39c258d6f307884fe97ca54943ad7750e999
parente3b4a530641993a0a6279d696c9029e8e8d314dc (diff)
downloadrust-5d9318c42c1df48f2b3b8bbbe82d96a9c2c555fa.tar.gz
rust-5d9318c42c1df48f2b3b8bbbe82d96a9c2c555fa.zip
Fixes requested by @michaelwoerister.
-rw-r--r--src/test/incremental/hashes/enum_defs.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/incremental/hashes/enum_defs.rs b/src/test/incremental/hashes/enum_defs.rs
index bd477552742..b04b5ded811 100644
--- a/src/test/incremental/hashes/enum_defs.rs
+++ b/src/test/incremental/hashes/enum_defs.rs
@@ -16,7 +16,7 @@
 // and make sure that the hash has changed, then change nothing between rev2 and
 // rev3 and make sure that the hash has not changed.
 
-// We also test the ICH for struct definitions exported in metadata. Same as
+// We also test the ICH for enum definitions exported in metadata. Same as
 // above, we want to make sure that the change between rev1 and rev2 also
 // results in a change of the ICH for the struct's metadata, and that it stays
 // the same between rev2 and rev3.
@@ -325,7 +325,7 @@ enum EnumChangeFieldOrderStructStyleVariant {
 #[rustc_metadata_dirty(cfg="cfail2")]
 #[rustc_metadata_clean(cfg="cfail3")]
 enum EnumChangeFieldOrderStructStyleVariant {
-    Variant1 { b: u32, a: u32 },
+    Variant1 { b: f32, a: u32 },
 }