analyzer: Fix PR analyzer/101980
[official-gcc.git] / gcc / testsuite / gnat.dg / task4.adb
blob9a97503389cc463bd08bac6dabd9c0d188cdd0f7
1 -- { dg-do compile }
3 with System.Multiprocessors;
5 procedure Task4 is
7 task type Infinite_Loop (C : System.Multiprocessors.CPU_Range)
8 with CPU => C;
10 task body Infinite_Loop is
11 begin
12 loop
13 null;
14 end loop;
15 end Infinite_Loop;
17 begin
18 null;
19 end Task4;