This file is indexed.

/usr/share/doc/freefem++/examples/examples++-bug/fe-vect.edp is in freefem++-doc 3.19.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
mesh Th = square(10,10); 
fespace Wh(Th,[P2,P2]);	// R2->R2
Wh [F1,F2]; //def de l'inconnu et des fonct tests

F1 = 1;
// il y a un bug ici car dans un element fini vectoriel
// il est impossible defini juste une composante
//  il faut faire:

cout << F1(0.5, 0.6) << endl;
cout << F2(0.5, 0.6) << endl;
cout << F1(0.5, 0.6);
[F1,F2]=[1,2]; 
cout << " -- F1 " <<  F1(0.5, 0.6) << endl;
cout << " -- F2 " << F2(0.5, 0.6) << endl;