RIP prefix-list in 2.9.51

Hello, does the prefix-list filtering work with RIP in 2.9.51?
By reading the v2.9 documentation it should be supported, however I hadn’t any success so far.
I have a fairly simple setup, my intention is to filter out all incoming routes from the 10.0.0.0/8 range.

/ routing prefix-list 
add prefix-list=plout prefix=10.0.0.0/8 prefix-length=8-32 action=reject \
    comment="" 

/ routing rip 
set redistribute-static=no redistribute-connected=yes redistribute-ospf=no \
    redistribute-bgp=no metric-static=1 metric-connected=1 metric-ospf=1 \
    metric-bgp=1 update-timer=30s timeout-timer=3m garbage-timer=2m 
/ routing rip interface 
add interface=all receive=v2 send=v2 authentication=md5 \
    authentication-key="1234567" prefix-list-in=plout prefix-list-out=none 
/ routing rip network 
add address=172.16.0.0/23 
add address=172.17.0.0/22 

[admin@MikroTik] ip route> print 
Flags: X - disabled, A - active, D - dynamic, 
C - connect, S - static, r - rip, b - bgp, o - ospf 
 #     DST-ADDRESS        PREF-SRC        G GATEWAY         DISTANCE INTERFACE
 0 ADr 10.1.1.0/30                        r 172.16.0.14            ether3   
 1 ADr 10.1.2.0/30                        r 172.16.0.14            ether3   
 2 ADr 10.111.111.0/24                    r 172.16.0.14            ether3   
...

I managed to accomplish this by activating the routing-test package and setting route filters.