viperproject / chalice2silver

Other
0 stars 0 forks source link

Channels of different types are not known to be non-aliases #80

Open viper-admin opened 8 years ago

viper-admin commented 8 years ago

Created by @vakaras on 2016-04-11 12:24

In the translation of the following example:

#!Silver

channel C;
channel D;

class A {
  method test(c: C, d: D) {
    // c != d ?
  }
}

at the Silver level there is no information that c != d, which causes problems for the leack check.