-
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.
- Loading branch information
1 parent
b2cc2e4
commit 991ad54
Showing
6 changed files
with
65 additions
and
8 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
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
2 changes: 1 addition & 1 deletion
2
...rguments/of annotation calls/main.sdstest → ...nnotation calls/to parameter/main.sdstest
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
9 changes: 9 additions & 0 deletions
9
...rces/scoping/arguments/of annotation calls/to something other than parameter/main.sdstest
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package tests.scoping.arguments.ofAnnotationCalls.toSomethingOtherThanParameter | ||
|
||
annotation MyAnnotation(a: Int) | ||
|
||
@MyAnnotation( | ||
// $TEST$ unresolved | ||
»MyAnnotation« = 0, | ||
) | ||
pipeline myPipeline {} |
13 changes: 13 additions & 0 deletions
13
tests/resources/scoping/arguments/of annotation calls/unresolved/main.sdstest
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package tests.scoping.arguments.ofAnnotationCalls.unresolved | ||
|
||
annotation MyAnnotation(a: Int) | ||
|
||
@MyAnnotation( | ||
// $TEST$ unresolved | ||
»unresolved« = 0, | ||
) | ||
@Unresolved( | ||
// $TEST$ unresolved | ||
»a« = 0 | ||
) | ||
pipeline myPipeline {} |