File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed
librustc_data_structures/veccell Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 1+ // Copyright 2012-2014 The Rust Project Developers. See the COPYRIGHT
2+ // file at the top-level directory of this distribution and at
3+ // http://rust-lang.org/COPYRIGHT.
4+ //
5+ // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6+ // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7+ // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8+ // option. This file may not be copied, modified, or distributed
9+ // except according to those terms.
10+
111use std:: cell:: UnsafeCell ;
212use std:: mem;
313
Original file line number Diff line number Diff line change @@ -37,8 +37,7 @@ mod y {
3737 char:: method ( 'a' ) ;
3838 }
3939
40- // TODO open an issue on this, problem is that we fail to track
41- // the tcx fulfillment cache
40+ // FIXME(#30741) tcx fulfillment cache not tracked
4241 #[ rustc_then_this_would_need( TypeckItemBody ) ] //~ ERROR no path
4342 #[ rustc_then_this_would_need( TransCrateItem ) ] //~ ERROR no path
4443 pub fn take_foo_with_char ( ) {
@@ -51,7 +50,7 @@ mod y {
5150 u32:: method ( 22 ) ;
5251 }
5352
54- // TODO same issue as above
53+ // FIXME(#30741) tcx fulfillment cache not tracked
5554 #[ rustc_then_this_would_need( TypeckItemBody ) ] //~ ERROR no path
5655 #[ rustc_then_this_would_need( TransCrateItem ) ] //~ ERROR no path
5756 pub fn take_foo_with_u32 ( ) {
You can’t perform that action at this time.
0 commit comments