We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7b0b71 commit a9012a2Copy full SHA for a9012a2
src/librustc/middle/ty.rs
@@ -2273,7 +2273,7 @@ pub fn type_contents(cx: ctxt, ty: t) -> TypeContents {
2273
for type_param_def.bounds.builtin_bounds.each |bound| {
2274
debug!("tc = %s, bound = %?", tc.to_str(), bound);
2275
tc = tc - match bound {
2276
- BoundCopy => TypeContents::nonimplicitly_copyable(cx),
+ BoundCopy => TypeContents::noncopyable(cx),
2277
BoundStatic => TypeContents::nonstatic(cx),
2278
BoundOwned => TypeContents::nonowned(cx),
2279
BoundConst => TypeContents::nonconst(cx),
0 commit comments