Originally created by @bioball on GitHub (Oct 25, 2024).
This code throws:
bar = new {}
foo {
for (i in List(1)) {
...(bar) {
baz {
new { i }
}
}.baz
}
}
This also throws (logically the same code):
bar = new {}
foo {
for (i in List(1)) {
for (elem in (bar) {
baz {
new { i }
}
}.baz) {
elem
}
}
}
Throws:
–– Pkl Error ––
Cannot find property `i`.
7 | new { i }
^
Originally created by @bioball on GitHub (Oct 25, 2024).
This code throws:
```pkl
bar = new {}
foo {
for (i in List(1)) {
...(bar) {
baz {
new { i }
}
}.baz
}
}
```
This also throws (logically the same code):
```pkl
bar = new {}
foo {
for (i in List(1)) {
for (elem in (bar) {
baz {
new { i }
}
}.baz) {
elem
}
}
}
```
Throws:
```
–– Pkl Error ––
Cannot find property `i`.
7 | new { i }
^
```
adam
added the bug label 2025-12-30 01:22:31 +01:00
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Originally created by @bioball on GitHub (Oct 25, 2024).
This code throws:
This also throws (logically the same code):
Throws: