Skip to content

Commit

Permalink
Fix a bad proc param test
Browse files Browse the repository at this point in the history
  • Loading branch information
ike709 committed Nov 29, 2024
1 parent 12b9f6e commit fdbaac6
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 13 deletions.

This file was deleted.

11 changes: 11 additions & 0 deletions Content.Tests/DMProject/Tests/Expression/proccall_keyword_param.dm
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)

0 comments on commit fdbaac6

Please sign in to comment.