From c51bbf6bb39af536e08747bbe062bc5613e18a1b Mon Sep 17 00:00:00 2001 From: "Paulo F. Oliveira" Date: Wed, 5 Jun 2024 22:17:58 +0100 Subject: [PATCH] Include specific execution conditions --- test/examples/pass_maybe.erl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/examples/pass_maybe.erl b/test/examples/pass_maybe.erl index d882f7d8..73d2950b 100644 --- a/test/examples/pass_maybe.erl +++ b/test/examples/pass_maybe.erl @@ -1,7 +1,11 @@ -module(pass_maybe). +-if(?OTP_RELEASE >= 25). + -feature(maybe_expr, enable). +-endif. + -export([sum_numbers/2]).