I suspect it's on the list of things to do. From the reading I've done, there's a lot of gotchas in implementing const stuff in Rust, and so while pushing for a large subset of rust to be supported, what you can do in const statements has been expanding very slowly.
Note that there's no such thing as a "const statement". const Ident: Type = Expr; is an item (as in the macro fragment) form and not a stmt. Moreover, bindings must be declared before use whereas constants can be declared after use:
fn foo() {
dbg!(X);
const X: u8 = 0; // OK.
dbg!(x); // ERROR.
let x: u8 = 0;
}