The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!perl -T

# https://github.com/beyondgrep/ack2/issues/522

use strict;
use warnings;
use Test::More tests => 4;

use lib 't';
use Util;

prep_environment();

my @stdout;

@stdout = run_ack("use strict;\nuse warnings", 't/swamp');

is scalar(@stdout), 0, 'an embedded newline in the search regex should never match anything';

@stdout = run_ack('-A', '1', "use strict;\nuse warnings", 't/swamp');

is scalar(@stdout), 0, 'an embedded newline in the search regex should never match anything, even with context';