From 3739ddc36f462b794ec05c0cfc36458a8d1e17a7 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 24 Dec 2019 12:11:42 +0900 Subject: [PATCH] Added `-W:experimental` to `--help` [Feature #16420] --- ruby.c | 1 + 1 file changed, 1 insertion(+) diff --git a/ruby.c b/ruby.c index 5a7aa62168..7903f583fe 100644 --- a/ruby.c +++ b/ruby.c @@ -302,6 +302,7 @@ usage(const char *name, int help) }; static const struct message warn_categories[] = { M("deprecated", "", "deprecated features"), + M("experimental", "", "experimental features"), }; static const struct message mjit_options[] = { M("--jit-warnings", "", "Enable printing JIT warnings"),