debuginfo: Cleaned up style issues for pull request.

This commit is contained in:
Michael Woerister 2013-07-16 12:17:55 +02:00
parent eed2d0e1f2
commit b2aeb4b04b
28 changed files with 588 additions and 500 deletions

View file

@ -44,17 +44,17 @@ fn main() {
// 0b0111110001111100 = 31868
// 0b01111100 = 124
let the_a = TheA { x: 0, y: 8970181431921507452 };
let the_a_ref : &ABC = &the_a;
let the_a_ref: &ABC = &the_a;
// 0b0001000100010001000100010001000100010001000100010001000100010001 = 1229782938247303441
// 0b00010001000100010001000100010001 = 286331153
// 0b0001000100010001 = 4369
// 0b00010001 = 17
let the_b = TheB (0, 286331153, 286331153);
let the_b_ref : &ABC = &the_b;
let the_b_ref: &ABC = &the_b;
let univariant = TheOnlyCase(4820353753753434);
let univariant_ref : &Univariant = &univariant;
let univariant_ref: &Univariant = &univariant;
zzz();
}