summary refs log tree commit diff stats
path: root/tests/overload/toverwr.nim
diff options
context:
space:
mode:
Diffstat (limited to 'tests/overload/toverwr.nim')
-rw-r--r--tests/overload/toverwr.nim14
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/overload/toverwr.nim b/tests/overload/toverwr.nim
index ef25e8913..32d50faaa 100644
--- a/tests/overload/toverwr.nim
+++ b/tests/overload/toverwr.nim
@@ -1,13 +1,13 @@
-discard """
-  file: "toverwr.nim"
-  output: "hello"
-"""
+discard """

+  file: "toverwr.nim"

+  output: "hello"

+"""

 # Test the overloading resolution in connection with a qualifier

 

 proc write(t: TFile, s: string) =

-  nil # a nop

+  discard # a nop

 

 system.write(stdout, "hello")

 #OUT hello

-
-
+

+

class='alt'>
9b002e0d4 ^
78f9c9a2c ^






26a9ba71c ^






6c7abe6e5 ^
26a9ba71c ^

9b002e0d4 ^
26a9ba71c ^







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65