repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs1503-7.cs
blob
b7649d412c4293ffffbfe0375dd7a9ac0d722a08
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
}