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
/
cs0029-23.cs
blob
1102d2a6bb05b60dc27c73636dd56246b328e671
1
// CS0029: Cannot implicitly convert type `bool' to `int'
2
// Line : 7
3
4
class
T
{
5
static int
Main
()
6
{
7
int
a
=
default
(
bool
);
8
}
9
}