1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-11-22 06:42:41 +01:00

Fix some failing unit tests

Summary: I somehow missed these.

Test Plan: `arc unit`

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: epriestley, Korvin

Differential Revision: https://secure.phabricator.com/D13693
This commit is contained in:
Joshua Spence 2015-08-03 06:47:47 +10:00
parent d3b316ad35
commit 0d6f3328a0
3 changed files with 3 additions and 3 deletions

View file

@ -28,7 +28,7 @@ warning:4:14
warning:5:11 warning:5:11
warning:8:15 warning:8:15
error:10:13 error:10:13
warning:11:23 warning:13:23
warning:16:31 warning:16:31
warning:19:33 warning:19:33
warning:24:14 warning:24:14

View file

@ -21,7 +21,7 @@ final class Quack {
function () use ($this_is_a_closure) {}; function() use ($this_is_a_closure) {};
function f(&$YY) {} function f(&$YY) {}

View file

@ -1,6 +1,6 @@
<?php <?php
function () use ($c) { function() use ($c) {
$c++; $c++;
}; };