-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
bugSomething isn't workingSomething isn't workingflow-analysisConcerns the PDG construction componentConcerns the PDG construction component
Description
In this example the graph contains a dependency from the old img.user when the field is overwritten.
struct User {
name: String,
}
struct Image {
user: User,
name: String,
}
for mut img in Image::for_user(&user) {
img.user = User {
name: "dummy".to_string(),
};
img.name = "dummy".to_string();
img.delete()
}Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingflow-analysisConcerns the PDG construction componentConcerns the PDG construction component