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
+
1
11
use std:: cell:: UnsafeCell ;
2
12
use std:: mem;
3
13
Original file line number Diff line number Diff line change @@ -37,8 +37,7 @@ mod y {
37
37
char:: method ( 'a' ) ;
38
38
}
39
39
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
42
41
#[ rustc_then_this_would_need( TypeckItemBody ) ] //~ ERROR no path
43
42
#[ rustc_then_this_would_need( TransCrateItem ) ] //~ ERROR no path
44
43
pub fn take_foo_with_char ( ) {
@@ -51,7 +50,7 @@ mod y {
51
50
u32:: method ( 22 ) ;
52
51
}
53
52
54
- // TODO same issue as above
53
+ // FIXME(#30741) tcx fulfillment cache not tracked
55
54
#[ rustc_then_this_would_need( TypeckItemBody ) ] //~ ERROR no path
56
55
#[ rustc_then_this_would_need( TransCrateItem ) ] //~ ERROR no path
57
56
pub fn take_foo_with_u32 ( ) {
You can’t perform that action at this time.
0 commit comments