-
I have been receiving a compiler crash after adding json serialization to my schema objects in this branch: https://github.com/vijayee/protocolbuffers/tree/wontcompile I'm receiving an output of ```B…
-
We discussed on a recent sync call the idea of being able to load struct definitions from a C header, so that Pony code could potentially depend on platform dependent struct definitions.
This came …
-
Minimal case:
```pony
fun flatten[A: Array[Array[A]] #read](arrayin: Array[Array[A]]): Array[A] =>
let rv: Array[A] = Array[A]
for f in arrayin.values() do
for g in f.values() do
…
-
Hi
The (admittedly nonsense) code below triggers an assertion failure in ponyc:
```pony
use "collections"
type MyMap is MapIs[String, Array[String]]
class C
let _m: MyMap
new crea…
-
Compiling this:
```
actor Main
new create(env: Env) =>
try let …
-
using the Cloudsmith package querying API. This command should return a limited set of the results from Cloudsmith.
-
## Environment
OS: MacOS 10.13.6
Ponyc: 0.25.0-232a0abe1 [release]
compiled with: llvm 3.9.1 -- Apple LLVM version 9.1.0 (clang-902.0.39.2)
Defaults: pic=false ssl=openssl_0.9.0
## Descript…
-
The following program causes the compiler to recurse infinitely, until it overflows its stack and segfaults. Using a union type `(X | N iso)` compiles fine.
```pony
trait N
class A[Y: (X & N iso)…
-
The following code causes a compiler error on ponyc 0.35.1-57947572
```pony
actor Main
new create(env: Env) =>
Herp~create(where env=env)(Derp)
actor Herp
new create(derp: Derp, env:…
-
This was originally opened as [issue 139](https://github.com/ponylang/ponyc/issues/139) on the ponyc repo:
There is a detailed list of requirements and some discussion.