repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs1503-7.cs
blob
87e3632c279fde5b8c819e8ee93de758698d739f
1
// CS1503: Argument `#1' cannot convert `long' expression to type `ulong'
2
// Line: 17
3
4
class
A
5
{
6
public static long
Prop
{
7
get
{
8
return
1
;
9
}
10
}
11
}
12
13
class
Test
14
{
15
static void
Main
()
16
{
17
Foo
(
A
.
Prop
);
18
}
19
20
static void
Foo
(
ulong
l
)
21
{
22
}
23
}