Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
gdc.test
/
compilable
/
b15206.d
blob: 13e7c0061c8570777efb733f475d3f34efdc8ebd [
file
] [
log
] [
blame
]
// PERMUTE_ARGS:
// REQUIRED_ARGS: -O
void
main
()
{
}
struct
Line
{
double
slope
;
double
intercept
;
}
Line
nLineProjection
(
double
[]
historicData
)
{
Line
projLine
;
projLine
.
intercept
=
historicData
[
$
-
1
]
+
projLine
.
slope
;
return
projLine
;
}