-
```
% cat circular_leak.cc
void foo() {
void **x = new void *[10];
void **y = new void *[20];
x[0] = y;
y[0] = x;
}
int main() {
foo();
}
% clang -g -O1 -fsanitize=address circular_leak.…
-
If `EIP-X` requires `EIP-Y`, and `EIP-Y` requires `EIP-X`, then `eipw` should give a warning. Same if `EIP-X` requires `EIP-Y` requires `EIP-Z` requires `EIP-X`, or etc...
-
```
% cat circular_leak.cc
void foo() {
void **x = new void *[10];
void **y = new void *[20];
x[0] = y;
y[0] = x;
}
int main() {
foo();
}
% clang -g -O1 -fsanitize=address circular_leak.…
-
```
% cat circular_leak.cc
void foo() {
void **x = new void *[10];
void **y = new void *[20];
x[0] = y;
y[0] = x;
}
int main() {
foo();
}
% clang -g -O1 -fsanitize=address circular_leak.…
-
## Expected Behavior
Modules / functions reference(import) specific functionality instead of using indexes.
## Actual Behavior
When running the build for modeling, the following error is publ…
-
If you import a contract that belongs to the project from another package, Hardhat fails.
#1509 makes Hardhat throw a clear error in that case, but I found a way to actually support it.
If when …
-
```
% cat circular_leak.cc
void foo() {
void **x = new void *[10];
void **y = new void *[20];
x[0] = y;
y[0] = x;
}
int main() {
foo();
}
% clang -g -O1 -fsanitize=address circular_leak.…
-
```
% cat circular_leak.cc
void foo() {
void **x = new void *[10];
void **y = new void *[20];
x[0] = y;
y[0] = x;
}
int main() {
foo();
}
% clang -g -O1 -fsanitize=address circular_leak.…
-
Will this program support auto resolve circular dependencies feature in future?
-
### Which @angular/* package(s) are relevant/related to the feature request?
compiler
### Description
If standalone component A imports standalone component B, and B imports A, then `Referenc…