aboutsummaryrefslogtreecommitdiff
path: root/sbt-bridge/src/sbt-test/source-dependencies/linearization/test
blob: e6078ebfb1b3dbc6b4d25ab3e6390e4d76e98847 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
> compile

# the value of F.x should be 16
> run 16

# modify D.scala so that the linearization changes
$ copy-file changes/D.scala D.scala
# F.x becomes 11
> compile

# if F is recompiled, the value of x should be 11, otherwise it will still be 16
# and this will fail
> run 11