We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
min_const_fn
1 parent 83b8a56 commit 3abc727Copy full SHA for 3abc727
src/librustc/ty/constness.rs
@@ -104,11 +104,11 @@ impl<'tcx> TyCtxt<'tcx> {
104
// err on the "safe" side and require min_const_fn.
105
true
106
} else {
107
- // Unstable functions need not conform to min const fn.
+ // Unstable functions need not conform to min_const_fn.
108
false
109
}
110
111
- // Internal functions are forced to conform to min const fn.
+ // Internal functions are forced to conform to min_const_fn.
112
// Annotate the internal function with a const stability attribute if
113
// you need to use unstable features.
114
// Note: this is an arbitrary choice that does not affect stability or const
0 commit comments