]> git.lizzy.rs Git - rust.git/blobdiff - src/test/run-pass/expr-match-struct.rs
Switch to purely namespaced enums
[rust.git] / src / test / run-pass / expr-match-struct.rs
index 21b0c28495e6b93a02dfda1618cac1b6c6072f24..ea96005dc602e8434a442571c53e2ce2178d392d 100644 (file)
@@ -31,8 +31,8 @@ fn ne(&self, other: &mood) -> bool { !(*self).eq(other) }
 }
 
 fn test_tag() {
-    let rs = match true { true => { happy } false => { sad } };
-    assert_eq!(rs, happy);
+    let rs = match true { true => { mood::happy } false => { mood::sad } };
+    assert_eq!(rs, mood::happy);
 }
 
 pub fn main() { test_rec(); test_tag(); }