summaryrefslogtreecommitdiffstats
path: root/library/core/tests/char.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/core/tests/char.rs')
-rw-r--r--library/core/tests/char.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/library/core/tests/char.rs b/library/core/tests/char.rs
index ac0b2ca16..85ba51c92 100644
--- a/library/core/tests/char.rs
+++ b/library/core/tests/char.rs
@@ -21,6 +21,7 @@ fn test_convert() {
assert!(char::try_from(0xFFFF_FFFF_u32).is_err());
}
+/* FIXME(#110395)
#[test]
const fn test_convert_const() {
assert!(u32::from('a') == 0x61);
@@ -30,6 +31,7 @@ const fn test_convert_const() {
assert!(char::from(b'a') == 'a');
assert!(char::from(b'\xFF') == '\u{FF}');
}
+*/
#[test]
fn test_from_str() {