Files
codeql/csharp/ql/test/query-tests/Bad Practices/Comments/TodoComments/TodoCommentsBad.cs
2018-08-02 17:53:23 +01:00

11 lines
215 B
C#

using System;
class Bad
{
public static double SolveQuadratic(double a, double b, double c)
{
// TODO: handle case where a == 0
return (-b + Math.Sqrt(b * b - 4 * a * c)) / (2 * a);
}
}