aboutsummaryrefslogtreecommitdiff
path: root/tests/trait_expand.ek
diff options
context:
space:
mode:
authorKimplul <kimi.h.kuparinen@gmail.com>2024-08-11 23:23:12 +0300
committerKimplul <kimi.h.kuparinen@gmail.com>2024-08-11 23:23:12 +0300
commitd23d03829e5baf947d347f49cc1d7807be6c070b (patch)
treef611d1105868f1d253cf15070b55793ed694861b /tests/trait_expand.ek
parent3065334aec0f357c88eab144628a798db4a3e5ea (diff)
downloadek-d23d03829e5baf947d347f49cc1d7807be6c070b.tar.gz
ek-d23d03829e5baf947d347f49cc1d7807be6c070b.zip
initial generics for structs
+ Likely still very much full of bugs
Diffstat (limited to 'tests/trait_expand.ek')
-rw-r--r--tests/trait_expand.ek2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/trait_expand.ek b/tests/trait_expand.ek
index 2d9f90d..8ee413e 100644
--- a/tests/trait_expand.ek
+++ b/tests/trait_expand.ek
@@ -14,6 +14,6 @@ typedef c {
main()
{
- c c;
+ c c = c!{};
c.a();
}