We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5dfc2c8 commit add284aCopy full SHA for add284a
ci/build.sh
@@ -67,6 +67,13 @@ test_target() {
67
cargo "+${RUST}" "${BUILD_CMD}" -vv $opt --no-default-features --target "${TARGET}" \
68
--features extra_traits
69
70
+ # Test the 'const-extern-fn' feature on nightly
71
+ if [ "${RUST}" = "nightly" ]; then
72
+ cargo "+${RUST}" "${BUILD_CMD}" -vv $opt --no-default-features --target "${TARGET}" \
73
+ --features const-extern-fn
74
+ fi
75
+
76
77
# Also test that it builds with `extra_traits` and default features:
78
if [ "$NO_STD" != "1" ]; then
79
cargo "+${RUST}" "${BUILD_CMD}" -vv $opt --target "${TARGET}" \
0 commit comments