forked from nim-lang/Nim
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix assignment to converted concept type (nim-lang#15051)
* fix assignment to converted concept type * check for resolved concepts * add extra test
- Loading branch information
Showing
2 changed files
with
41 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,44 @@ | ||
type | ||
hasFieldX = concept z | ||
z.x is int | ||
block: | ||
type | ||
hasFieldX = concept z | ||
z.x is int | ||
|
||
obj_x = object | ||
x: int | ||
obj_x = object | ||
x: int | ||
|
||
ref_obj_x = ref object | ||
x: int | ||
ref_obj_x = ref object | ||
x: int | ||
|
||
ref_to_obj_x = ref obj_x | ||
ref_to_obj_x = ref obj_x | ||
|
||
p_o_x = ptr obj_x | ||
v_o_x = var obj_x | ||
p_o_x = ptr obj_x | ||
v_o_x = var obj_x | ||
|
||
template check(x) = | ||
static: assert(x) | ||
template check(x) = | ||
static: assert(x) | ||
|
||
check obj_x is hasFieldX | ||
check ref_obj_x is hasFieldX | ||
check ref_to_obj_x is hasFieldX | ||
check p_o_x is hasFieldX | ||
check v_o_x is hasFieldX | ||
check obj_x is hasFieldX | ||
check ref_obj_x is hasFieldX | ||
check ref_to_obj_x is hasFieldX | ||
check p_o_x is hasFieldX | ||
check v_o_x is hasFieldX | ||
|
||
block: | ||
type | ||
Foo = concept x | ||
x.isFoo | ||
Bar = distinct float | ||
template isFoo(x: Bar): untyped = true | ||
proc foo(x: var Foo) = | ||
float(x) = 1.0 | ||
proc foo2(x: var Bar) = | ||
float(x) = 1.0 | ||
proc foo3(x: var (Bar|SomeNumber)) = | ||
float(x) = 1.0 | ||
proc foo4(x: var any) = | ||
float(x) = 1.0 | ||
var x: Bar | ||
foo(x) | ||
foo2(x) | ||
foo3(x) | ||
foo4(x) |