Skip to content

Commit

Permalink
Fix reflect-visit-type for iterator changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Blei committed Jun 23, 2013
1 parent e2f1049 commit ce888a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/test/run-pass/reflect-visit-type.rs
Expand Up @@ -162,7 +162,7 @@ pub fn main() {
visit_ty::<i16>(vv);
visit_ty::<~[int]>(vv);

for v.types.each |&s| {
for v.types.iter().advance |&s| {
println(fmt!("type: %s", s));
}
assert_eq!((*v.types).clone(), ~[~"bool", ~"int", ~"i8", ~"i16", ~"[", ~"int", ~"]"]);
Expand Down

4 comments on commit ce888a5

@bors
Copy link
Contributor

@bors bors commented on ce888a5 Jun 23, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bors
Copy link
Contributor

@bors bors commented on ce888a5 Jun 23, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

merging Blei/rust/intrinsic-overhaul = ce888a5 into auto

@bors
Copy link
Contributor

@bors bors commented on ce888a5 Jun 23, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Blei/rust/intrinsic-overhaul = ce888a5 merged ok, testing candidate = d728f5d4

@bors
Copy link
Contributor

@bors bors commented on ce888a5 Jun 23, 2013

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.