From e06b81e029c8e37a4b5e153e85977022b0167f9e Mon Sep 17 00:00:00 2001 From: Niv Kaminer Date: Mon, 17 Dec 2018 18:38:42 +0200 Subject: [PATCH] FIXME(21232) update fixme to point to the open issue about accepting partial initialization --- src/test/ui/borrowck/assign_mutable_fields.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/ui/borrowck/assign_mutable_fields.rs b/src/test/ui/borrowck/assign_mutable_fields.rs index 4e41f44ef5bb..1b9ecbeafe42 100644 --- a/src/test/ui/borrowck/assign_mutable_fields.rs +++ b/src/test/ui/borrowck/assign_mutable_fields.rs @@ -12,7 +12,7 @@ // var, but we do not permit you to use the complete var afterwards. // We hope to fix this at some point. // -// FIXME(#21232) +// FIXME(#54987) fn assign_both_fields_and_use() { let mut x: (u32, u32);