1
Fork 0

check-fast fallout from removing export, r=burningtree

This commit is contained in:
Graydon Hoare 2013-02-01 19:43:17 -08:00
parent e5e52d2437
commit 89c8ef792f
1073 changed files with 1083 additions and 1083 deletions

View file

@ -21,7 +21,7 @@ fn gg<T:Bar>(a: &T) -> int {
a.f()
}
fn main() {
pub fn main() {
let a = &A { x: 3 };
assert gg(a) == 10;
}