Bonjour,
après notre soumission au serveur, on a reçu les résultats du genre de ce qui suit pour quelques uns des tests:
--------------------------------------------------------
[ KO ] --> 0020-object-expression.clap
INPUT:
object test {
val x = new A (0, 1)
}
OUTPUT:
object test extends predefined.Object {
val x = new this.A (0, 1)
}
EXPECTED:
object test extends predefined.Object {
val x
= new this.A (0, 1)
}
--------------------------------------------------------
[ KO ] --> 0021-object-expression.clap
INPUT:
object test {
val x = new A[Int] (0, 1)
}
OUTPUT:
object test extends predefined.Object {
val x =
new this.A [this.Int] (0, 1)
}
EXPECTED:
object test extends predefined.Object {
val x
= new this.A [this.Int] (0, 1)
}
D'après nous, le problème est lié au saut de ligne avant (ou après) l' "=".
Est-ce que quelqu'un pourrait donner une explication?
Merci.