New Issue: round enum in BigInteger conflicts with round function in Math

19303, "mppf", "round enum in BigInteger conflicts with round function in Math", "2022-02-24T15:13:49Z"

use BigInteger;
use Math;

var x = round(1.5);

writeln(x);
$CHPL_HOME/modules/standard/BigInteger.chpl:199: error: symbol round is multiply defined
$CHPL_HOME/modules/standard/Math.chpl:1054: note: also defined as a function here (and possibly elsewhere)

This seems like something we should fix, but I don't think we necessarily have to.