-
Notifications
You must be signed in to change notification settings - Fork 113
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
ike709
committed
Nov 29, 2024
1 parent
12b9f6e
commit fdbaac6
Showing
2 changed files
with
11 additions
and
13 deletions.
There are no files selected for viewing
13 changes: 0 additions & 13 deletions
13
Content.Tests/DMProject/Broken Tests/Expression/proccall_keyword_param.dm
This file was deleted.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
Content.Tests/DMProject/Tests/Expression/proccall_keyword_param.dm
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,11 @@ | ||
|
||
//# issue 655 | ||
//# issue 265 | ||
|
||
/datum/proc/nullproc(null, temp) | ||
ASSERT(isnull(null)) | ||
ASSERT(temp == 2) | ||
|
||
/proc/RunTest() | ||
var/datum/D = new | ||
D.nullproc(1,2) |